diff options
| author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2009-06-19 21:22:34 -0400 | 
|---|---|---|
| committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2009-06-19 21:22:34 -0400 | 
| commit | 1941186fa99ce9a9e333d9ab0deb928937e1ea61 (patch) | |
| tree | 683188717e4acbb4623460cc28f61d08edb9a3a6 /htpstate.h | |
| parent | df28032e41530c0230b1c72c3684e1bd49c7019e (diff) | |
| download | mazeoflife-1941186fa99ce9a9e333d9ab0deb928937e1ea61.tar.gz mazeoflife-1941186fa99ce9a9e333d9ab0deb928937e1ea61.tar.bz2 mazeoflife-1941186fa99ce9a9e333d9ab0deb928937e1ea61.zip  | |
Added How To Play
Closes #103
Diffstat (limited to 'htpstate.h')
| -rw-r--r-- | htpstate.h | 18 | 
1 files changed, 18 insertions, 0 deletions
| diff --git a/htpstate.h b/htpstate.h new file mode 100644 index 0000000..2639d1a --- /dev/null +++ b/htpstate.h | |||
| @@ -0,0 +1,18 @@ | |||
| 1 | #ifndef HTPSTATE_H | ||
| 2 | #define HTPSTATE_H | ||
| 3 | |||
| 4 | class HowToPlayState : public State { | ||
| 5 | public: | ||
| 6 | HowToPlayState(); | ||
| 7 | void input(SDLKey key); | ||
| 8 | void render(SDL_Surface* screen); | ||
| 9 | |||
| 10 | private: | ||
| 11 | SDL_Surface* background1; | ||
| 12 | SDL_Surface* background2; | ||
| 13 | SDL_Surface* pointer; | ||
| 14 | bool secondPage; | ||
| 15 | int selection; | ||
| 16 | }; | ||
| 17 | |||
| 18 | #endif | ||
