home *** CD-ROM | disk | FTP | other *** search
/ C++ Games Programming / CPPGAMES.ISO / thx / include / settings.h < prev    next >
C/C++ Source or Header  |  1995-05-08  |  565b  |  19 lines

  1. // ------- settings.h
  2.  
  3. #ifndef SETTINGS_H
  4. #define SETTINGS_H
  5.  
  6. const int DEFAULT_VIDEO_MODE = 22;
  7.  
  8. const int MAXDIRECTORS = 20; // Directors in one application
  9. const int MAXHANDS = 250;    // limit of Hands in application
  10. const int MAXFXLIBS = 30;    // GFX/SFX libs
  11. const int MAXMESSAGE = 200;  // highest message number available
  12. const int MAXNETPACK = 100;  // highest network packet available
  13.  
  14. const int NUMPATCHES = 25;   // used only by 'set_synch_patch'
  15.                              // and 'synch_patches'
  16. const int CLOCKTICKS = 18;
  17.  
  18. #endif
  19.