stratgame

view src/game_part.h @ 0:86b53f76899f

foo
author John Tsiombikas <nuclear@member.fsf.org>
date Mon, 21 May 2012 19:07:40 +0300
parents
children 369b51c9e4a8
line source
1 #ifndef GAME_PART_H_
2 #define GAME_PART_H_
4 #include "part.h"
5 #include "level.h"
7 class Game : public Part {
8 private:
9 Level *level;
10 public:
11 ~Game();
13 void draw() const;
14 void key(int key, bool pressed);
15 };
17 #endif // GAME_PART_H_