summary refs log tree commit diff stats
path: root/hslist.h
diff options
context:
space:
mode:
Diffstat (limited to 'hslist.h')
-rw-r--r--hslist.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/hslist.h b/hslist.h index 88c47c4..bebb85a 100644 --- a/hslist.h +++ b/hslist.h
@@ -18,4 +18,16 @@ class LocalHighscoreList : public HighscoreList {
18 LocalHighscoreList(); 18 LocalHighscoreList();
19}; 19};
20 20
21class GlobalHighscoreList : public HighscoreList {
22 public:
23 GlobalHighscoreList();
24 SDL_Surface* render();
25
26 private:
27 typedef HighscoreList super;
28
29 protected:
30 bool fail;
31};
32
21#endif 33#endif