Changeset 2169 for code/branches/objecthierarchy/src/orxonox
- Timestamp:
- Nov 9, 2008, 8:46:26 PM (16 years ago)
- Location:
- code/branches/objecthierarchy/src/orxonox
- Files:
-
- 4 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
code/branches/objecthierarchy/src/orxonox/CMakeLists.txt
r2168 r2169 54 54 objects/Script.cc 55 55 56 objects/Level.cc 56 57 objects/Scene.cc 57 58 objects/worldentities/WorldEntity.cc … … 82 83 83 84 objects/infos/Info.cc 84 objects/infos/Level.cc85 85 objects/infos/PlayerInfo.cc 86 86 objects/infos/HumanPlayer.cc -
code/branches/objecthierarchy/src/orxonox/LevelManager.cc
r2168 r2169 31 31 32 32 #include "PlayerManager.h" 33 #include "objects/ infos/Level.h"33 #include "objects/Level.h" 34 34 #include "objects/infos/HumanPlayer.h" 35 35 -
code/branches/objecthierarchy/src/orxonox/OrxonoxPrereqs.h
r2168 r2169 85 85 86 86 // objects 87 class Level; 87 88 class Scene; 88 89 … … 121 122 122 123 class Info; 123 class Level;124 124 class PlayerInfo; 125 125 class HumanPlayer; -
code/branches/objecthierarchy/src/orxonox/PlayerManager.cc
r2168 r2169 33 33 #include "core/Core.h" 34 34 #include "core/CoreIncludes.h" 35 #include "objects/ infos/Level.h"35 #include "objects/Level.h" 36 36 #include "objects/infos/HumanPlayer.h" 37 37 -
code/branches/objecthierarchy/src/orxonox/objects/Level.cc
r2168 r2169 38 38 #include "Settings.h" 39 39 #include "LevelManager.h" 40 #include " PlayerInfo.h"40 #include "objects/infos/PlayerInfo.h" 41 41 #include "objects/gametypes/Gametype.h" 42 42 #include "overlays/OverlayGroup.h" … … 48 48 CreateFactory(Level); 49 49 50 Level::Level(BaseObject* creator) : Info(creator)50 Level::Level(BaseObject* creator) : BaseObject(creator), Synchronisable(creator) 51 51 { 52 52 RegisterObject(Level); -
code/branches/objecthierarchy/src/orxonox/objects/Level.h
r2167 r2169 32 32 #include "OrxonoxPrereqs.h" 33 33 34 #include "Info.h" 34 #include "network/Synchronisable.h" 35 #include "core/BaseObject.h" 35 36 36 37 namespace orxonox 37 38 { 38 class _OrxonoxExport Level : public Info39 class _OrxonoxExport Level : public BaseObject, public Synchronisable 39 40 { 40 41 public:
Note: See TracChangeset
for help on using the changeset viewer.