Changeset 9836 in orxonox.OLD for branches/new_class_id/src/story_entities
- Timestamp:
- Sep 26, 2006, 5:16:10 PM (18 years ago)
- Location:
- branches/new_class_id/src/story_entities
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/new_class_id/src/story_entities/game_world_data.cc
r9833 r9836 25 25 26 26 #include "util/loading/game_loader.h" 27 #include "util/loading/ new_resource_manager.h"27 #include "util/loading/resource_manager.h" 28 28 29 29 #include "world_entity.h" … … 379 379 { 380 380 PRINTF(3)("Setting Sound Track to %s\n", name.c_str()); 381 std::string oggFile = Resources:: NewResourceManager::getInstance()->prependAbsoluteMainPath(name);381 std::string oggFile = Resources::ResourceManager::getInstance()->prependAbsoluteMainPath(name); 382 382 this->music = new OrxSound::OggPlayer(oggFile); 383 383 if (this->localPlayer != NULL) -
branches/new_class_id/src/story_entities/story_entity.cc
r9833 r9836 23 23 24 24 #include "loading/load_param.h" 25 #include "loading/ new_resource_manager.h"25 #include "loading/resource_manager.h" 26 26 27 27 #include "debug.h" … … 107 107 } 108 108 else 109 this->loadFile = Resources:: NewResourceManager::getInstance()->prependAbsoluteMainPath(fileName);109 this->loadFile = Resources::ResourceManager::getInstance()->prependAbsoluteMainPath(fileName); 110 110 111 111 this->grabWorldInfo();
Note: See TracChangeset
for help on using the changeset viewer.