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:46:53 -0400
committerKelly Rauchenberger <fefferburbia@gmail.com>2009-06-19 20:46:53 -0400
commitab18806cddf99514e7ac8d970587e5f1d6d01603 (patch)
tree51811ba47de36c8911043258f073484e3948c807 /dummystate.h
parentf2caf2c09fc431e11068c13a49ae28f18182bea9 (diff)
downloadmazeoflife-ab18806cddf99514e7ac8d970587e5f1d6d01603.tar.gz
mazeoflife-ab18806cddf99514e7ac8d970587e5f1d6d01603.tar.bz2
mazeoflife-ab18806cddf99514e7ac8d970587e5f1d6d01603.zip
Added title screen
Refs #103
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