summary refs log tree commit diff stats
path: root/state.h
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2009-06-19 20:46:53 -0400
committerKelly Rauchenberger <fefferburbia@gmail.com>2009-06-19 20:46:53 -0400
commitab18806cddf99514e7ac8d970587e5f1d6d01603 (patch)
tree51811ba47de36c8911043258f073484e3948c807 /state.h
parentf2caf2c09fc431e11068c13a49ae28f18182bea9 (diff)
downloadmazeoflife-ab18806cddf99514e7ac8d970587e5f1d6d01603.tar.gz
mazeoflife-ab18806cddf99514e7ac8d970587e5f1d6d01603.tar.bz2
mazeoflife-ab18806cddf99514e7ac8d970587e5f1d6d01603.zip
Added title screen
Refs #103
Diffstat (limited to 'state.h')
-rw-r--r--state.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/state.h b/state.h index 1a97a1b..aa83718 100644 --- a/state.h +++ b/state.h
@@ -5,7 +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 tick() {};
9 virtual void render(SDL_Surface* screen) = 0; 9 virtual void render(SDL_Surface* screen) = 0;
10}; 10};
11 11