diff options
Diffstat (limited to 'hslist.h')
| -rw-r--r-- | hslist.h | 21 |
1 files changed, 21 insertions, 0 deletions
| diff --git a/hslist.h b/hslist.h new file mode 100644 index 0000000..88c47c4 --- /dev/null +++ b/hslist.h | |||
| @@ -0,0 +1,21 @@ | |||
| 1 | #ifndef HSLIST_H | ||
| 2 | #define HSLIST_H | ||
| 3 | |||
| 4 | class HighscoreList | ||
| 5 | { | ||
| 6 | public: | ||
| 7 | SDL_Surface* render(); | ||
| 8 | |||
| 9 | protected: | ||
| 10 | std::vector<Highscore> getLocalHighscores(); | ||
| 11 | std::vector<Highscore> getGlobalHighscores(); | ||
| 12 | |||
| 13 | std::vector<Highscore> hslist; | ||
| 14 | }; | ||
| 15 | |||
| 16 | class LocalHighscoreList : public HighscoreList { | ||
| 17 | public: | ||
| 18 | LocalHighscoreList(); | ||
| 19 | }; | ||
| 20 | |||
| 21 | #endif | ||
