stratgame

view src/game_part.h @ 2:369b51c9e4a8

foo
author John Tsiombikas <nuclear@member.fsf.org>
date Wed, 23 May 2012 07:25:43 +0300
parents 86b53f76899f
children 8d95187cb3ee
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 bool init();
15 void draw() const;
16 void key(int key, bool pressed);
17 };
19 #endif // GAME_PART_H_