Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

try to save highscore

File size: 388 bytes
Line 
1#include "HighscoreIO.h"
2
3#include <vector>
4#include "core/CoreIncludes.h"
5#include "core/config/ConfigValueIncludes.h"
6
7
8namespace orxonox
9{
10        HighscoreIO::HighscoreIO()
11    {
12        RegisterObject(HighscoreIO);
13        this->setConfigValues();
14    }
15
16    void HighscoreIO::setConfigValues()
17    {
18       
19                SetConfigValue(name_, "Orxonox").description("The name of the game");
20    }
21
22}
Note: See TracBrowser for help on using the repository browser.