summary refs log tree commit diff stats
path: root/state.h
diff options
context:
space:
mode:
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