summary refs log tree commit diff stats
path: root/state.h
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2009-06-18 18:02:54 -0400
committerKelly Rauchenberger <fefferburbia@gmail.com>2009-06-18 18:02:54 -0400
commit7b92903af52dbdf4b0dbfa10dc45345531d88595 (patch)
treed27f2ca24df37788a110919c5395faa3962b12d4 /state.h
parent71045152800ab0cc0dce6ec70dba9d7f9bb9dab5 (diff)
downloadmazeoflife-7b92903af52dbdf4b0dbfa10dc45345531d88595.tar.gz
mazeoflife-7b92903af52dbdf4b0dbfa10dc45345531d88595.tar.bz2
mazeoflife-7b92903af52dbdf4b0dbfa10dc45345531d88595.zip
Added Level class
Diffstat (limited to 'state.h')
-rw-r--r--state.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/state.h b/state.h index e070858..1a97a1b 100644 --- a/state.h +++ b/state.h
@@ -5,6 +5,7 @@ class State
5{ 5{
6 public: 6 public:
7 virtual void input(SDLKey key) = 0; 7 virtual void input(SDLKey key) = 0;
8 virtual void tick() = 0;
8 virtual void render(SDL_Surface* screen) = 0; 9 virtual void render(SDL_Surface* screen) = 0;
9}; 10};
10 11