diff options
Diffstat (limited to 'kbounce/highscores.h')
-rw-r--r-- | kbounce/highscores.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/kbounce/highscores.h b/kbounce/highscores.h new file mode 100644 index 00000000..59372ed6 --- /dev/null +++ b/kbounce/highscores.h @@ -0,0 +1,17 @@ +#ifndef HIGHSCORES_H +#define HIGHSCORES_H + +#include <kexthighscore.h> + +using namespace KExtHighscore; + +class ExtManager : public Manager +{ + public: + ExtManager(); + + private: + bool isStrictlyLess(const Score &s1, const Score &s2) const; +}; + +#endif |