- Timestamp:
- Mar 26, 2013, 11:33:01 PM (12 years ago)
- Location:
- code/branches/core6/src/libraries
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core6/src/libraries/network/synchronisable/Synchronisable.h
r9579 r9587 41 41 #include "util/mbool.h" 42 42 #include "util/Output.h" 43 #include "core/class/Orxonox Class.h"43 #include "core/class/OrxonoxInterface.h" 44 44 #include "SynchronisableVariable.h" 45 45 #include "NetworkCallback.h" … … 144 144 * @author Oliver Scheuss 145 145 */ 146 class _NetworkExport Synchronisable : virtual public Orxonox Class{146 class _NetworkExport Synchronisable : virtual public OrxonoxInterface { 147 147 public: 148 148 friend class packet::Gamestate; -
code/branches/core6/src/libraries/tools/interfaces/Tickable.h
r9563 r9587 44 44 #include "tools/ToolsPrereqs.h" 45 45 46 #include "core/class/Orxonox Class.h"46 #include "core/class/OrxonoxInterface.h" 47 47 #include "core/class/Super.h" 48 48 … … 50 50 { 51 51 //! The Tickable interface provides a tick(dt) function, that gets called every frame. 52 class _ToolsExport Tickable : virtual public Orxonox Class52 class _ToolsExport Tickable : virtual public OrxonoxInterface 53 53 { 54 54 public:
Note: See TracChangeset
for help on using the changeset viewer.