sysutil.h 465 B

123456789101112131415161718192021
  1. #ifndef __SYSTEM_UTILS
  2. #define __SYSTEM_UTILS
  3. #include "font.h"
  4. #include "Isometric Utils.h"
  5. #include "interface.h"
  6. // Global variables for video objects
  7. extern UINT32 guiBOTTOMPANEL;
  8. extern UINT32 guiRIGHTPANEL;
  9. extern UINT32 guiRENDERBUFFER;
  10. extern UINT32 guiSAVEBUFFER;
  11. extern UINT32 guiEXTRABUFFER;
  12. extern BOOLEAN gfExtraBuffer;
  13. BOOLEAN InitializeSystemVideoObjects( );
  14. BOOLEAN InitializeGameVideoObjects( );
  15. #endif