diff options
Diffstat (limited to 'hsglobal.h')
| -rw-r--r-- | hsglobal.h | 18 |
1 files changed, 18 insertions, 0 deletions
| diff --git a/hsglobal.h b/hsglobal.h new file mode 100644 index 0000000..5b92b0e --- /dev/null +++ b/hsglobal.h | |||
| @@ -0,0 +1,18 @@ | |||
| 1 | #ifndef HSGLOBAL_H | ||
| 2 | #define HSGLOBAL_H | ||
| 3 | |||
| 4 | class GlobalHighscoreListState : public State { | ||
| 5 | public: | ||
| 6 | GlobalHighscoreListState(); | ||
| 7 | void input(SDL_keysym key); | ||
| 8 | void render(SDL_Surface* screen); | ||
| 9 | |||
| 10 | private: | ||
| 11 | static int LoadHighscoreList(void* pParam); | ||
| 12 | |||
| 13 | SDL_Surface* list; | ||
| 14 | SDL_Surface* options; | ||
| 15 | SDL_Surface* pointer; | ||
| 16 | }; | ||
| 17 | |||
| 18 | #endif | ||
