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