Changeset 1314 for code/branches/hud3/src/orxonox/hud/HUD.h
- Timestamp:
- May 17, 2008, 3:05:27 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/hud3/src/orxonox/hud/HUD.h
r1308 r1314 36 36 37 37 #include "OrxonoxPrereqs.h" 38 38 #include "objects/SpaceShip.h" 39 39 #include "core/Tickable.h" 40 40 #include "BarOverlayElement.h" … … 44 44 namespace orxonox 45 45 { 46 class _OrxonoxExport HUD : public Tickable 47 { 48 private: 46 class _OrxonoxExport HUD : public Tickable 47 { 48 private: 49 Ogre::OverlayManager* om; 50 Ogre::Overlay* orxonoxHUD; 51 Ogre::OverlayContainer* container; 52 SmartBarOverlayElement* energyCounter; 53 SmartBarOverlayElement* speedo; 54 RadarOverlayElement* radar; 49 55 50 public: 51 HUD(int zoom); 52 ~HUD(); 56 public: 57 HUD(int zoom); 58 ~HUD(); 59 virtual void tick(float); 53 60 54 virtual void tick(float); 55 56 SmartBarOverlayElement* energyCounter; 57 58 RadarOverlayElement* radar; 59 }; 61 }; 60 62 } 61 63
Note: See TracChangeset
for help on using the changeset viewer.