summary refs log tree commit diff stats
path: root/dummystate.h
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2009-06-19 20:58:45 -0400
committerKelly Rauchenberger <fefferburbia@gmail.com>2009-06-19 20:58:45 -0400
commitdf28032e41530c0230b1c72c3684e1bd49c7019e (patch)
tree47abb7f22de30c8e07eca3860c1f3ece77a96ae0 /dummystate.h
parentab18806cddf99514e7ac8d970587e5f1d6d01603 (diff)
downloadmazeoflife-df28032e41530c0230b1c72c3684e1bd49c7019e.tar.gz
mazeoflife-df28032e41530c0230b1c72c3684e1bd49c7019e.tar.bz2
mazeoflife-df28032e41530c0230b1c72c3684e1bd49c7019e.zip
Removed need for DummyState
Diffstat (limited to 'dummystate.h')
-rw-r--r--dummystate.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/dummystate.h b/dummystate.h deleted file mode 100644 index 0f1e48b..0000000 --- a/dummystate.h +++ /dev/null
@@ -1,12 +0,0 @@
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