summary refs log tree commit diff stats
path: root/htpstate.h
diff options
context:
space:
mode:
Diffstat (limited to 'htpstate.h')
-rw-r--r--htpstate.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/htpstate.h b/htpstate.h deleted file mode 100644 index 79c66ba..0000000 --- a/htpstate.h +++ /dev/null
@@ -1,18 +0,0 @@
1#ifndef HTPSTATE_H
2#define HTPSTATE_H
3
4class HowToPlayState : public State {
5 public:
6 HowToPlayState();
7 void input(SDL_keysym 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