Changeset 1567 for code/trunk/src/orxonox/hud/HUD.h
- Timestamp:
- Jun 8, 2008, 5:55:05 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/orxonox/hud/HUD.h
r1564 r1567 37 37 #include "objects/Tickable.h" 38 38 #include "util/Math.h" 39 #include "OverlayElementFactories.h" 39 40 40 41 namespace orxonox … … 43 44 { 44 45 public: 45 static HUD& getSingleton(); 46 void initialise(); 47 void destroy(); 48 46 49 virtual void tick(float); 47 50 … … 54 57 inline std::list<RadarObject*>& getRadarObjects() 55 58 { return this->roSet_; } 59 60 static HUD& getSingleton(); 56 61 57 62 static void setEnergy(float value); … … 66 71 ~HUD(); 67 72 68 static HUD* instance_s; 73 std::list<RadarObject*> roSet_; 74 BarOverlayElementFactory barOverlayElementFactory_; 75 RadarOverlayElementFactory radarOverlayElementFactory_; 69 76 70 std::list<RadarObject*> roSet_;71 77 Ogre::Overlay* orxonoxHUD_; 72 78 Ogre::OverlayContainer* container_; 73 BarOverlayElementFactory* barOverlayElementFactory_;74 RadarOverlayElementFactory* radarOverlayElementFactory_;75 79 Ogre::TextAreaOverlayElement* fpsText_; 76 80 Ogre::TextAreaOverlayElement* rTRText_;
Note: See TracChangeset
for help on using the changeset viewer.