Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/Highscore_HS16/src/orxonox/highscore/HighscoreIO.h @ 11304

Last change on this file since 11304 was 11304, checked in by kappenh, 7 years ago

try to save highscore

File size: 477 bytes
Line 
1
2
3#include <string>
4#include "core/config/Configurable.h"
5
6namespace orxonox
7{
8class _CoreExport HighscoreIO : virtual public Configurable
9{
10    public:
11        HighscoreIO();              // Constructor
12        void setConfigValues(); // Inherited function
13        void storeHighscore(std::string player, std::string level, int points);
14
15                const std::string& getName()
16            { return this->name_; }
17
18    private:
19        std::string name_;
20        float version_;
21};
22
23
24}
Note: See TracBrowser for help on using the repository browser.