home *** CD-ROM | disk | FTP | other *** search
/ Revista CD Expert 51 / PCGamer51_17Demos.iso / games / CM / CyclingManagerDemoCangas.exe / CyclingManagerDemo / scripts / inrace / PickingWindow.cnh < prev    next >
Text File  |  2001-01-22  |  821b  |  32 lines

  1. // func void PickingWindow_Create ()
  2. typedef func void TYPE_PickingWindow_Create ();
  3. var TYPE_PickingWindow_Create PickingWindow_Create;
  4.  
  5. // func i32x PickingWindow_Event (i32x _iComponentID,i32x _iEvent)
  6. typedef func i32x TYPE_PickingWindow_Event (i32x _iComponentID,i32x _iEvent);
  7. var TYPE_PickingWindow_Event PickingWindow_Event;
  8.  
  9. // func void PickingWindow_Init ()
  10. typedef func void TYPE_PickingWindow_Init ();
  11. var TYPE_PickingWindow_Init PickingWindow_Init;
  12.  
  13.  
  14. // -------------------------------------------------------------------------------
  15.  
  16.  
  17. // Structure declaration
  18. typedef struct sPickingWindow
  19. {
  20.     ObjectFunc oFunc;
  21.     f32x fSizeX;
  22.     f32x fSizeY;
  23.     f32x fPosX;
  24.     f32x fPosY;
  25.     f32x fMousePosX;
  26.     f32x fMousePosY;
  27.     f32x fX;
  28.     f32x fY;
  29. } sPickingWindow;
  30.  
  31. var sPickingWindow oPickingWindow;
  32.