Advertisement
python

game_engine.h

Jul 26th, 2011
385
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.31 KB | None | 0 0
  1. #ifndef GAME_ENGINE_H
  2. #define GAME_ENGINE_H
  3.  
  4. /**
  5.  ** game_engine.c contains empty functions so I have excluded it from my pastes
  6.  **/
  7.  
  8. class game_engine
  9. {
  10.     public:
  11.         game_engine();
  12.         bool load();
  13.         virtual ~game_engine();
  14.     protected:
  15.     private:
  16. };
  17.  
  18. #endif // GAME_ENGINE_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement