Changeset 5206 in orxonox.OLD for trunk/src/story_entities
- Timestamp:
- Sep 19, 2005, 12:31:56 AM (19 years ago)
- Location:
- trunk/src/story_entities
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/story_entities/world.cc
r5205 r5206 119 119 World::~World () 120 120 { 121 delete Shell::getInstance();121 delete this->shell; 122 122 PRINTF(3)("World::~World() - deleting current world\n"); 123 123 … … 200 200 201 201 /* init the world interface */ 202 Shell::getInstance();202 this->shell = new Shell(); 203 203 204 204 LightManager::getInstance(); -
trunk/src/story_entities/world.h
r5205 r5206 24 24 class PilotNode; 25 25 26 class Shell; 26 27 class OggPlayer; 27 28 … … 93 94 char* path; //!< The file from which this world is loaded 94 95 95 96 Shell* shell; 96 97 OggPlayer* music; 97 98
Note: See TracChangeset
for help on using the changeset viewer.