Changeset 9578 for code/branches/core6/src/modules
- Timestamp:
- Mar 25, 2013, 11:05:13 PM (12 years ago)
- Location:
- code/branches/core6/src/modules
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core6/src/modules/designtools/ScreenshotManager.h
r9563 r9578 44 44 45 45 #include "util/Singleton.h" 46 #include "core/c lass/OrxonoxClass.h"46 #include "core/config/Configurable.h" 47 47 48 48 namespace orxonox … … 61 61 @ingroup Designtools 62 62 */ 63 class ScreenshotManager : public OrxonoxClass, public Singleton<ScreenshotManager>63 class ScreenshotManager : public Configurable, public Singleton<ScreenshotManager> 64 64 { 65 65 friend class Singleton<ScreenshotManager>; -
code/branches/core6/src/modules/designtools/SkyboxGenerator.h
r9563 r9578 36 36 #define __SkyboxGenerator_h__ 37 37 38 #include "core/c lass/OrxonoxClass.h"38 #include "core/config/Configurable.h" 39 39 #include "util/Singleton.h" 40 40 #include "tools/interfaces/Tickable.h" … … 58 58 @ingroup Designtools 59 59 */ 60 class SkyboxGenerator : public virtual OrxonoxClass, public Singleton<SkyboxGenerator>, public Tickable60 class SkyboxGenerator : public virtual Configurable, public Singleton<SkyboxGenerator>, public Tickable 61 61 { 62 62 friend class Singleton<SkyboxGenerator>; -
code/branches/core6/src/modules/questsystem/QuestManager.cc
r8952 r9578 38 38 #include "util/ScopedSingletonManager.h" 39 39 #include "core/command/ConsoleCommand.h" 40 #include "core/CoreIncludes.h"41 40 #include "core/GUIManager.h" 42 41 #include "core/LuaState.h" … … 60 59 QuestManager::QuestManager() 61 60 { 62 RegisterRootObject(QuestManager);63 61 orxout(internal_info, context::quests) << "QuestManager created." << endl; 64 62 } -
code/branches/core6/src/modules/questsystem/QuestManager.h
r9563 r9578 43 43 44 44 #include "util/Singleton.h" 45 #include "core/class/OrxonoxClass.h"46 45 47 46 namespace orxonox // tolua_export … … 59 58 */ 60 59 class _QuestsystemExport QuestManager // tolua_export 61 : public Singleton<QuestManager> , public orxonox::OrxonoxClass60 : public Singleton<QuestManager> 62 61 { // tolua_export 63 62
Note: See TracChangeset
for help on using the changeset viewer.