Guest User

Untitled

a guest
Feb 8th, 2016
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.18 KB | None | 0 0
  1. /*
  2.  * Game.h
  3.  *
  4.  */
  5.  
  6. #ifndef GAME_H
  7. #define GAME_H
  8.  
  9. class Game {
  10. public:
  11.     Game();
  12.     ~Game();
  13.  
  14.     void        run();
  15. private:
  16.     SDL_Event   _ev;
  17.     bool        _isRunning;
  18. };
  19.  
  20. #endif
Advertisement
Add Comment
Please, Sign In to add comment