home *** CD-ROM | disk | FTP | other *** search
/ Chip 2011 November / CHIP_2011_11.iso / Programy / Inne / Gry / Atomic_Tanks / Atomic-Tanks-5.1.exe / src / gameloop.h < prev    next >
C/C++ Source or Header  |  2010-05-28  |  295b  |  17 lines

  1. #ifndef GAMELOOP_HEADER_FILE__
  2. #define GAMELOOP_HEADER_FILE__
  3.  
  4. #include "globaldata.h"
  5. #include "environment.h"
  6.  
  7. #define MAX_TEXT_BOUNCE 40
  8.  
  9. // The massive game loop, re-wrrite here for
  10. // all sorts of reasons.
  11. #ifdef NEW_GAMELOOP
  12. int game(GLOBALDATA *global, ENVIRONMENT *env);
  13. #endif
  14.  
  15. #endif
  16.  
  17.