Changeset 9638 for code/branches/core6/src/orxonox/worldentities
- Timestamp:
- Aug 11, 2013, 5:52:29 PM (11 years ago)
- Location:
- code/branches/core6/src/orxonox/worldentities
- Files:
-
- 16 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core6/src/orxonox/worldentities/BigExplosion.cc
r9629 r9638 41 41 namespace orxonox 42 42 { 43 CreateFactory(BigExplosion);43 RegisterClass(BigExplosion); 44 44 45 45 BigExplosion::BigExplosion(Context* context) : StaticEntity(context) -
code/branches/core6/src/orxonox/worldentities/CameraPosition.cc
r9629 r9638 35 35 namespace orxonox 36 36 { 37 CreateFactory(CameraPosition);37 RegisterClass(CameraPosition); 38 38 39 39 CameraPosition::CameraPosition(Context* context) : StaticEntity(context) -
code/branches/core6/src/orxonox/worldentities/ControllableEntity.cc
r9629 r9638 47 47 namespace orxonox 48 48 { 49 CreateFactory(ControllableEntity);49 RegisterClass(ControllableEntity); 50 50 51 51 registerMemberNetworkFunction( ControllableEntity, fire ); -
code/branches/core6/src/orxonox/worldentities/Drone.cc
r9629 r9638 34 34 namespace orxonox 35 35 { 36 CreateFactory(Drone);36 RegisterClass(Drone); 37 37 /** 38 38 @brief -
code/branches/core6/src/orxonox/worldentities/EffectContainer.cc
r9629 r9638 40 40 namespace orxonox 41 41 { 42 CreateFactory(EffectContainer);42 RegisterClass(EffectContainer); 43 43 44 44 EffectContainer::EffectContainer(Context* context) -
code/branches/core6/src/orxonox/worldentities/ExplosionChunk.cc
r9629 r9638 38 38 namespace orxonox 39 39 { 40 CreateFactory(ExplosionChunk);40 RegisterClass(ExplosionChunk); 41 41 42 42 ExplosionChunk::ExplosionChunk(Context* context) : MovableEntity(context) -
code/branches/core6/src/orxonox/worldentities/MovableEntity.cc
r9629 r9638 41 41 static const float CONTINUOUS_SYNCHRONIZATION_TIME = 10.0f; 42 42 43 CreateFactory(MovableEntity);43 RegisterClass(MovableEntity); 44 44 45 45 MovableEntity::MovableEntity(Context* context) : MobileEntity(context) -
code/branches/core6/src/orxonox/worldentities/SpawnPoint.cc
r9629 r9638 37 37 namespace orxonox 38 38 { 39 CreateFactory(SpawnPoint);39 RegisterClass(SpawnPoint); 40 40 41 41 SpawnPoint::SpawnPoint(Context* context) : StaticEntity(context) -
code/branches/core6/src/orxonox/worldentities/StaticEntity.cc
r9629 r9638 37 37 namespace orxonox 38 38 { 39 CreateFactory(StaticEntity);39 RegisterClass(StaticEntity); 40 40 41 41 StaticEntity::StaticEntity(Context* context) : WorldEntity(context) -
code/branches/core6/src/orxonox/worldentities/TeamSpawnPoint.cc
r9629 r9638 34 34 namespace orxonox 35 35 { 36 CreateFactory(TeamSpawnPoint);36 RegisterClass(TeamSpawnPoint); 37 37 38 38 TeamSpawnPoint::TeamSpawnPoint(Context* context) : SpawnPoint(context) -
code/branches/core6/src/orxonox/worldentities/pawns/Destroyer.cc
r9629 r9638 34 34 namespace orxonox 35 35 { 36 CreateFactory(Destroyer);36 RegisterClass(Destroyer); 37 37 38 38 Destroyer::Destroyer(Context* context) : SpaceShip(context) -
code/branches/core6/src/orxonox/worldentities/pawns/FpsPlayer.cc
r9629 r9638 53 53 const float orientationGain_ = 100; 54 54 const float jumpValue_ = 300; 55 CreateFactory(FpsPlayer);55 RegisterClass(FpsPlayer); 56 56 57 57 FpsPlayer::FpsPlayer(Context* context) : Pawn(context) -
code/branches/core6/src/orxonox/worldentities/pawns/Pawn.cc
r9629 r9638 49 49 namespace orxonox 50 50 { 51 CreateFactory(Pawn);51 RegisterClass(Pawn); 52 52 53 53 Pawn::Pawn(Context* context) -
code/branches/core6/src/orxonox/worldentities/pawns/SpaceShip.cc
r9629 r9638 46 46 namespace orxonox 47 47 { 48 CreateFactory(SpaceShip);48 RegisterClass(SpaceShip); 49 49 50 50 SpaceShip::SpaceShip(Context* context) : Pawn(context), boostBlur_(NULL) -
code/branches/core6/src/orxonox/worldentities/pawns/Spectator.cc
r9629 r9638 45 45 extern const std::string __CC_suicide_name; 46 46 47 CreateFactory(Spectator);47 RegisterClass(Spectator); 48 48 49 49 Spectator::Spectator(Context* context) : ControllableEntity(context) -
code/branches/core6/src/orxonox/worldentities/pawns/TeamBaseMatchBase.cc
r9629 r9638 37 37 namespace orxonox 38 38 { 39 CreateFactory(TeamBaseMatchBase);39 RegisterClass(TeamBaseMatchBase); 40 40 41 41 TeamBaseMatchBase::TeamBaseMatchBase(Context* context) : Pawn(context)
Note: See TracChangeset
for help on using the changeset viewer.