home *** CD-ROM | disk | FTP | other *** search
/ C++ Games Programming / CPPGAMES.ISO / thx / demos / skyscrap / build / global.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-04-13  |  413 b   |  15 lines

  1. #ifndef __global_h
  2. #define __global_h
  3.  
  4. #include "object.h"
  5.  
  6. //--------------------------------------
  7. // global variables
  8. //--------------------------------------
  9. extern rect StealthRect;    // stealth pos rect
  10. extern rect HelicopterRect; // helicopter pos rect
  11. extern rect F15Rect;        // f15 pos rect
  12. extern int MsgInt;          // int to use for passing values in messages
  13.  
  14. #endif //__global_h
  15.