diff options
Diffstat (limited to 'gamestate.h')
-rw-r--r-- | gamestate.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gamestate.h b/gamestate.h index c36bcee..5537b51 100644 --- a/gamestate.h +++ b/gamestate.h | |||
@@ -22,6 +22,7 @@ class GameState : public State { | |||
22 | bool checkSquare(int x, int y); | 22 | bool checkSquare(int x, int y); |
23 | Uint32 getAliveColor(); | 23 | Uint32 getAliveColor(); |
24 | Uint32 getDeadColor(); | 24 | Uint32 getDeadColor(); |
25 | void incrementLevel(); | ||
25 | }; | 26 | }; |
26 | 27 | ||
27 | struct Info { | 28 | struct Info { |
@@ -46,8 +47,8 @@ class GameState : public State { | |||
46 | 47 | ||
47 | private: | 48 | private: |
48 | Uint32 player_color; | 49 | Uint32 player_color; |
50 | Uint32 event_color; | ||
49 | bool newGame; | 51 | bool newGame; |
50 | bool doneMaking; | ||
51 | Info info; | 52 | Info info; |
52 | Board board; | 53 | Board board; |
53 | void move(int x, int y); | 54 | void move(int x, int y); |