summary refs log tree commit diff stats
path: root/chlstate.h
diff options
context:
space:
mode:
Diffstat (limited to 'chlstate.h')
-rw-r--r--chlstate.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/chlstate.h b/chlstate.h deleted file mode 100644 index 15f1d05..0000000 --- a/chlstate.h +++ /dev/null
@@ -1,16 +0,0 @@
1#ifndef CHLSTATE_H
2#define CHLSTATE_H
3
4class ChooseHighscoreListState : public State {
5 public:
6 ChooseHighscoreListState();
7 void input(SDL_keysym key);
8 void render(SDL_Surface* screen);
9
10 private:
11 SDL_Surface* background;
12 SDL_Surface* pointer;
13 int selection;
14};
15
16#endif