Changeset 1613 for code/branches/hud/src/orxonox/Orxonox.cc
- Timestamp:
- Jun 20, 2008, 12:05:12 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/hud/src/orxonox/Orxonox.cc
r1604 r1613 76 76 #include "GraphicsEngine.h" 77 77 #include "Settings.h" 78 #include "Radar.h" 78 79 79 80 // globals for the server or client … … 99 100 , startLevel_(0) 100 101 , hud_(0) 102 , radar_(0) 101 103 //, auMan_(0) 102 104 , timer_(0) … … 126 128 delete this->hud_; 127 129 130 if (this->radar_) 131 delete this->radar_; 132 128 133 Loader::close(); 129 134 //if (this->auMan_) … … 342 347 // Load the HUD 343 348 COUT(3) << "Orxonox: Loading HUD" << std::endl; 344 345 349 hud_ = new Level(Settings::getDataPath() + "overlay/hud.oxo"); 346 350 Loader::load(hud_); 351 352 // Start the Radar 353 this->radar_ = new Radar(); 347 354 348 355 return true;
Note: See TracChangeset
for help on using the changeset viewer.