stratgame

view src/game_part.h @ 3:8d95187cb3ee

foo
author John Tsiombikas <nuclear@member.fsf.org>
date Wed, 23 May 2012 17:10:46 +0300
parents 369b51c9e4a8
children cd12944a8ea8
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 start();
17 void draw() const;
18 void reshape(int x, int y);
19 void key(int key, bool pressed);
20 };
22 #endif // GAME_PART_H_