Changeset 2140 for code/branches/overlay/src/orxonox
- Timestamp:
- Nov 5, 2008, 12:38:04 AM (16 years ago)
- Location:
- code/branches/overlay/src/orxonox
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/overlay/src/orxonox/gamestates/GSLevel.cc
r2103 r2140 60 60 , radar_(0) 61 61 , startFile_(0) 62 , stats_(0) 62 63 , cameraManager_(0) 63 64 , levelManager_(0) … … 93 94 // Start the Radar 94 95 this->radar_ = new Radar(); 96 97 stats_ = new XMLFile(Settings::getDataPath() + "overlay/stats.oxo"); 98 Loader::open(stats_); 95 99 } 96 100 -
code/branches/overlay/src/orxonox/gamestates/GSLevel.h
r2103 r2140 68 68 Radar* radar_; //!< represents the Radar (not the HUD part) 69 69 XMLFile* startFile_; //!< current hard coded default level 70 XMLFile* stats_; 70 71 CameraManager* cameraManager_; 71 72 LevelManager* levelManager_; -
code/branches/overlay/src/orxonox/overlays/stats/Stats.cc
r2120 r2140 35 35 #include <OgreOverlayManager.h> 36 36 #include <OgreOverlayContainer.h> 37 #include <OgreFontManager.h>38 #include <OgreFont.h>39 37 40 #include "util/Math.h"41 38 #include "util/Convert.h" 42 39 #include "util/Debug.h" 43 40 #include "core/CoreIncludes.h" 44 41 #include "core/ConfigValueIncludes.h" 45 #include "core/ConsoleCommand.h"46 #include "core/input/InputManager.h"47 #include "core/input/SimpleInputState.h"48 #include "core/input/InputBuffer.h"49 #include "GraphicsEngine.h"50 42 51 43 namespace orxonox 52 44 { 53 //CreateFactory(Stats);45 CreateFactory(Stats); 54 46 55 47 /**
Note: See TracChangeset
for help on using the changeset viewer.