From 7b92903af52dbdf4b0dbfa10dc45345531d88595 Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Thu, 18 Jun 2009 18:02:54 -0400 Subject: Added Level class --- board.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'board.h') diff --git a/board.h b/board.h index e2dcd8d..fdeefc9 100644 --- a/board.h +++ b/board.h @@ -4,14 +4,13 @@ class Board { private: - Uint32 on; - Uint32 off; bool blocks[WIDTH][HEIGHT]; public: Board(); + Board(Level level); bool isObstructed(int x, int y); - void render(SDL_Surface* screen); + void render(SDL_Surface* screen, Level level); }; #endif -- cgit 1.4.1