Changeset 5813 for code/branches/core5/src/modules/gamestates/GSLevel.cc
- Timestamp:
- Sep 27, 2009, 7:28:09 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core5/src/modules/gamestates/GSLevel.cc
r5806 r5813 48 48 49 49 #include "tools/interfaces/Tickable.h" 50 #include "Radar.h"51 50 #include "CameraManager.h" 52 51 #include "LevelManager.h" … … 67 66 , guiMouseOnlyInputState_(0) 68 67 , guiKeysOnlyInputState_(0) 69 , radar_(0)70 68 , cameraManager_(0) 71 69 { … … 104 102 // create the global CameraManager 105 103 this->cameraManager_ = new CameraManager(GraphicsManager::getInstance().getViewport()); 106 107 // Start the Radar108 this->radar_ = new Radar();109 104 } 110 105 … … 186 181 if (GameMode::isMaster()) 187 182 this->unloadLevel(); 188 189 if (this->radar_)190 {191 this->radar_->destroy();192 this->radar_ = 0;193 }194 183 195 184 if (this->cameraManager_)
Note: See TracChangeset
for help on using the changeset viewer.