summary refs log tree commit diff stats
path: root/gamestate.h
diff options
context:
space:
mode:
Diffstat (limited to 'gamestate.h')
-rw-r--r--gamestate.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/gamestate.h b/gamestate.h index 36de42e..1d66a9e 100644 --- a/gamestate.h +++ b/gamestate.h
@@ -3,13 +3,12 @@
3 3
4class GameState : public State { 4class GameState : public State {
5 private: 5 private:
6 bool blocks[WIDTH][HEIGHT];
7 Uint32 on;
8 Uint32 off;
9 Uint32 player_color; 6 Uint32 player_color;
10 int playerx, playery; 7 int playerx, playery;
8 bool newGame;
9 bool doneMaking;
10 Board board;
11 void move(int x, int y); 11 void move(int x, int y);
12 void wrap(int* x, int* y);
13 12
14 public: 13 public:
15 GameState(SDL_PixelFormat* fmt); 14 GameState(SDL_PixelFormat* fmt);