summary refs log tree commit diff stats
path: root/state.h
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2009-06-18 16:50:19 -0400
committerKelly Rauchenberger <fefferburbia@gmail.com>2009-06-18 16:50:19 -0400
commit024d098c686ae971176332d91db91582ad353c17 (patch)
tree0715eac2b6a34029f35ae5c97116c48ce39c70ce /state.h
parent10ccc825777c7ce8797fc58e1484dd93f19368cf (diff)
downloadmazeoflife-024d098c686ae971176332d91db91582ad353c17.tar.gz
mazeoflife-024d098c686ae971176332d91db91582ad353c17.tar.bz2
mazeoflife-024d098c686ae971176332d91db91582ad353c17.zip
Added movement
Diffstat (limited to 'state.h')
-rw-r--r--state.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/state.h b/state.h index dd5e52b..e070858 100644 --- a/state.h +++ b/state.h
@@ -4,6 +4,7 @@
4class State 4class State
5{ 5{
6 public: 6 public:
7 virtual void input(SDLKey key) = 0;
7 virtual void render(SDL_Surface* screen) = 0; 8 virtual void render(SDL_Surface* screen) = 0;
8}; 9};
9 10