Changeset 10464 for code/branches/core7/src/modules
- Timestamp:
- May 25, 2015, 12:13:34 AM (10 years ago)
- Location:
- code/branches/core7/src/modules
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core7/src/modules/designtools/ScreenshotManager.cc
r10459 r10464 61 61 SetConsoleCommand("printScreenHD", &ScreenshotManager::makeScreenshot_s); 62 62 63 ManageScopedSingleton(ScreenshotManager, ScopeID::G raphics, false);63 ManageScopedSingleton(ScreenshotManager, ScopeID::GRAPHICS, false); 64 64 65 65 RegisterAbstractClass(ScreenshotManager).inheritsFrom<Configurable>(); -
code/branches/core7/src/modules/designtools/SkyboxGenerator.cc
r10459 r10464 60 60 SetConsoleCommand("SkyboxGenerator", "createSkybox", &SkyboxGenerator::createSkybox).addShortcut(); 61 61 62 ManageScopedSingleton(SkyboxGenerator, ScopeID::G raphics, false);62 ManageScopedSingleton(SkyboxGenerator, ScopeID::GRAPHICS, false); 63 63 64 64 RegisterAbstractClass(SkyboxGenerator).inheritsFrom<Configurable>().inheritsFrom<Tickable>(); -
code/branches/core7/src/modules/notifications/NotificationManager.cc
r10459 r10464 47 47 { 48 48 49 ManageScopedSingleton(NotificationManager, ScopeID::R oot, false);49 ManageScopedSingleton(NotificationManager, ScopeID::ROOT, false); 50 50 51 51 RegisterAbstractClass(NotificationManager).inheritsFrom<NotificationListener>(); -
code/branches/core7/src/modules/pickup/PickupManager.cc
r10459 r10464 51 51 namespace orxonox 52 52 { 53 ManageScopedSingleton(PickupManager, ScopeID::R oot, false);53 ManageScopedSingleton(PickupManager, ScopeID::ROOT, false); 54 54 55 55 // Initialization of the name of the PickupInventory GUI. -
code/branches/core7/src/modules/questsystem/QuestManager.cc
r10459 r10464 49 49 namespace orxonox 50 50 { 51 ManageScopedSingleton(QuestManager, ScopeID::R oot, false);51 ManageScopedSingleton(QuestManager, ScopeID::ROOT, false); 52 52 53 53 /**
Note: See TracChangeset
for help on using the changeset viewer.