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:24:02 -0400
committerKelly Rauchenberger <fefferburbia@gmail.com>2009-06-18 16:24:02 -0400
commit10ccc825777c7ce8797fc58e1484dd93f19368cf (patch)
tree75333f5f5abc653a621e442129613fd4fdade8c1 /state.h
downloadmazeoflife-10ccc825777c7ce8797fc58e1484dd93f19368cf.tar.gz
mazeoflife-10ccc825777c7ce8797fc58e1484dd93f19368cf.tar.bz2
mazeoflife-10ccc825777c7ce8797fc58e1484dd93f19368cf.zip
Created base
Diffstat (limited to 'state.h')
-rw-r--r--state.h10
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
4class State
5{
6 public:
7 virtual void render(SDL_Surface* screen) = 0;
8};
9
10#endif