diff options
Diffstat (limited to 'state.h')
| -rw-r--r-- | state.h | 10 |
1 files changed, 10 insertions, 0 deletions
| diff --git a/state.h b/state.h new file mode 100644 index 0000000..dd5e52b --- /dev/null +++ b/state.h | |||
| @@ -0,0 +1,10 @@ | |||
| 1 | #ifndef STATE_H | ||
| 2 | #define STATE_H | ||
| 3 | |||
| 4 | class State | ||
| 5 | { | ||
| 6 | public: | ||
| 7 | virtual void render(SDL_Surface* screen) = 0; | ||
| 8 | }; | ||
| 9 | |||
| 10 | #endif | ||
