Changeset 9655 for code/branches/core6/src/orxonox
- Timestamp:
- Aug 16, 2013, 11:08:58 PM (11 years ago)
- Location:
- code/branches/core6/src/orxonox
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core6/src/orxonox/collisionshapes/CollisionShape.cc
r9629 r9655 44 44 namespace orxonox 45 45 { 46 RegisterAbstractClass(CollisionShape).inheritsFrom(Class(BaseObject)).inheritsFrom(Class(Synchronisable)); 46 47 47 48 /** -
code/branches/core6/src/orxonox/infos/PlayerInfo.cc
r9629 r9655 40 40 namespace orxonox 41 41 { 42 RegisterAbstractClass(PlayerInfo).inheritsFrom(Class(Info)); 43 42 44 PlayerInfo::PlayerInfo(Context* context) : Info(context) 43 45 { -
code/branches/core6/src/orxonox/weaponsystem/WeaponMode.cc
r9629 r9655 45 45 namespace orxonox 46 46 { 47 RegisterAbstractClass(WeaponMode).inheritsFrom(Class(BaseObject)); 48 47 49 WeaponMode::WeaponMode(Context* context) : BaseObject(context) 48 50 { -
code/branches/core6/src/orxonox/worldentities/WorldEntity.cc
r9629 r9655 61 61 BOOST_STATIC_ASSERT((int)Ogre::Node::TS_WORLD == (int)WorldEntity::World); 62 62 63 RegisterAbstractClass(WorldEntity).inheritsFrom(Class(BaseObject)).inheritsFrom(Class(Synchronisable)); 64 63 65 /** 64 66 @brief
Note: See TracChangeset
for help on using the changeset viewer.