- Timestamp:
- Oct 25, 2008, 5:13:35 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/objecthierarchy/src/orxonox/gamestates/GSLevel.cc
r2006 r2010 36 36 #include "core/input/KeyBinder.h" 37 37 #include "core/Loader.h" 38 #include "core/XMLFile.h" 38 39 #include "core/CommandExecutor.h" 39 40 #include "core/ConsoleCommand.h" … … 56 57 , inputState_(0) 57 58 , radar_(0) 58 , start Level_(0)59 , startFile_(0) 59 60 { 60 61 RegisterObject(GSLevel); … … 154 155 // call the loader 155 156 COUT(0) << "Loading level..." << std::endl; 156 start Level_ = new Level(Settings::getDataPath() + "levels/sample2.oxw");157 Loader::open(start Level_);157 startFile_ = new XMLFile(Settings::getDataPath() + "levels/sample2.oxw"); 158 Loader::open(startFile_); 158 159 } 159 160 160 161 void GSLevel::unloadLevel() 161 162 { 162 Loader::unload(start Level_);163 delete this->start Level_;163 Loader::unload(startFile_); 164 delete this->startFile_; 164 165 } 165 166
Note: See TracChangeset
for help on using the changeset viewer.