Sys Globals.h 654 B

1234567891011121314151617181920212223242526272829303132
  1. #ifndef __SYS_GLOBALS_H
  2. #define __SYS_GLOBALS_H
  3. #define SHOW_MIN_FPS 0
  4. #define SHOW_FULL_FPS 1
  5. UINT8 gubErrorText[ 200 ];
  6. BOOLEAN gfAniEditMode;
  7. BOOLEAN gfEditMode;
  8. BOOLEAN fFirstTimeInGameScreen;
  9. BOOLEAN fDirtyRectangleMode;
  10. INT8 gDebugStr[128];
  11. INT8 gSystemDebugStr[128];
  12. BOOLEAN gfMode;
  13. INT16 gsCurrentActionPoints;
  14. INT8 gbFPSDisplay;
  15. BOOLEAN gfResetInputCheck;
  16. BOOLEAN gfGlobalError;
  17. extern UINT32 guiGameCycleCounter;
  18. // VIDEO OVERLAYS
  19. INT32 giFPSOverlay;
  20. INT32 giCounterPeriodOverlay;
  21. extern BOOLEAN SET_ERROR( const char *String, ...);
  22. #endif