From 71045152800ab0cc0dce6ec70dba9d7f9bb9dab5 Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Thu, 18 Jun 2009 17:20:59 -0400 Subject: Started Board class --- gamestate.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'gamestate.h') diff --git a/gamestate.h b/gamestate.h index 36de42e..1d66a9e 100644 --- a/gamestate.h +++ b/gamestate.h @@ -3,13 +3,12 @@ class GameState : public State { private: - bool blocks[WIDTH][HEIGHT]; - Uint32 on; - Uint32 off; Uint32 player_color; int playerx, playery; + bool newGame; + bool doneMaking; + Board board; void move(int x, int y); - void wrap(int* x, int* y); public: GameState(SDL_PixelFormat* fmt); -- cgit 1.4.1