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