Changeset 11313 for code/branches/Highscore_HS16/src
- Timestamp:
- Nov 28, 2016, 4:53:24 PM (8 years ago)
- Location:
- code/branches/Highscore_HS16/src
- Files:
-
- 2 added
- 2 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/Highscore_HS16/src/libraries/core/CMakeLists.txt
r11304 r11313 27 27 GameMode.cc 28 28 GameState.cc 29 Highscore.cc30 29 Language.cc 31 30 Loader.cc … … 91 90 GraphicsManager.h 92 91 GUIManager.h 93 Highscore.h94 92 Loader.h 95 93 LuaState.h -
code/branches/Highscore_HS16/src/modules/jump/Jump.cc
r11071 r11313 34 34 #include "Jump.h" 35 35 #include "core/CoreIncludes.h" 36 #include "Highscore.h" 36 37 37 38 #include "JumpCenterpoint.h" … … 311 312 cleanup(); 312 313 GSLevel::startMainMenu(); 313 314 orxout() << "Test Highscore" << endl; 315 if (Highscore::exists()){ 316 orxout() << "exists" << endl; 317 Highscore::getInstance().storeHighscore("player","jump",sectionNumber_ - 2); 318 } 314 319 Deathmatch::end(); 315 320 } -
code/branches/Highscore_HS16/src/orxonox/CMakeLists.txt
r11304 r11313 27 27 LevelInfo.cc 28 28 LevelManager.cc 29 Highscore.cc 29 30 Main.cc 30 31 MoodManager.cc … … 61 62 LevelInfo.h 62 63 LevelManager.h 64 Highscore.h 63 65 MoodManager.h 64 66 controllers/HumanController.h
Note: See TracChangeset
for help on using the changeset viewer.