summary refs log tree commit diff stats
path: root/src/state.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/state.h')
-rw-r--r--src/state.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/state.h b/src/state.h deleted file mode 100644 index 1a97a1b..0000000 --- a/src/state.h +++ /dev/null
@@ -1,12 +0,0 @@
1#ifndef STATE_H
2#define STATE_H
3
4class State
5{
6 public:
7 virtual void input(SDLKey key) = 0;
8 virtual void tick() = 0;
9 virtual void render(SDL_Surface* screen) = 0;
10};
11
12#endif