home *** CD-ROM | disk | FTP | other *** search
/ AI Game Programming Wisdom / AIGameProgrammingWisdom.iso / SourceCode / 11 Learning / 01 Manslow / GPExample / CWorld.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-10-07  |  406 b   |  28 lines

  1. //GPExample
  2. //Copyright John Manslow
  3. //29/09/2001
  4.  
  5. #ifndef _CWorld_
  6. #define _CWorld_
  7.  
  8. class CWorld
  9. {
  10. public:
  11.  
  12.     CWorld(const unsigned long, const unsigned long);
  13.     ~CWorld();
  14.  
  15.     void Initialise(void);
  16.     void Draw(CDC*);
  17.  
  18.     unsigned long ulWorldSizeX;
  19.     unsigned long ulWorldSizeY;
  20.  
  21.     unsigned long ulCharacterLocationX;
  22.     unsigned long ulCharacterLocationY;
  23.  
  24.     int **ppnWorld;
  25. };
  26.  
  27. #endif
  28.