Changeset 5735 for code/branches/libraries2/src/orxonox/worldentities/pawns
- Timestamp:
- Sep 1, 2009, 12:38:36 AM (15 years ago)
- Location:
- code/branches/libraries2/src/orxonox/worldentities/pawns
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/libraries2/src/orxonox/worldentities/pawns/Destroyer.cc
r3325 r5735 30 30 31 31 #include "core/CoreIncludes.h" 32 #include " objects/gametypes/UnderAttack.h"32 #include "gametypes/UnderAttack.h" 33 33 34 34 namespace orxonox -
code/branches/libraries2/src/orxonox/worldentities/pawns/Pawn.cc
r3300 r5735 38 38 #include "interfaces/PawnListener.h" 39 39 #include "PawnManager.h" 40 #include " objects/infos/PlayerInfo.h"41 #include " objects/gametypes/Gametype.h"42 #include " objects/worldentities/ParticleSpawner.h"43 #include " objects/worldentities/ExplosionChunk.h"44 #include " objects/worldentities/BigExplosion.h"45 #include " objects/weaponsystem/WeaponSystem.h"46 #include " objects/weaponsystem/WeaponSlot.h"47 #include " objects/weaponsystem/WeaponPack.h"48 #include " objects/weaponsystem/WeaponSet.h"40 #include "infos/PlayerInfo.h" 41 #include "gametypes/Gametype.h" 42 #include "worldentities/ParticleSpawner.h" 43 #include "worldentities/ExplosionChunk.h" 44 #include "worldentities/BigExplosion.h" 45 #include "weaponsystem/WeaponSystem.h" 46 #include "weaponsystem/WeaponSlot.h" 47 #include "weaponsystem/WeaponPack.h" 48 #include "weaponsystem/WeaponSet.h" 49 49 50 50 -
code/branches/libraries2/src/orxonox/worldentities/pawns/Pawn.h
r3214 r5735 34 34 #include <string> 35 35 #include "interfaces/RadarViewable.h" 36 #include " objects/worldentities/ControllableEntity.h"37 #include " objects/pickup/PickupCollection.h"36 #include "worldentities/ControllableEntity.h" 37 #include "pickup/PickupCollection.h" 38 38 39 39 namespace orxonox … … 114 114 virtual void useItem() 115 115 { this->pickups_.useItem(); } 116 116 117 117 virtual void startLocalHumanControl(); 118 118 -
code/branches/libraries2/src/orxonox/worldentities/pawns/SpaceShip.cc
r3325 r5735 35 35 #include "core/Template.h" 36 36 #include "core/XMLPort.h" 37 #include " objects/items/Engine.h"37 #include "items/Engine.h" 38 38 39 39 namespace orxonox -
code/branches/libraries2/src/orxonox/worldentities/pawns/Spectator.cc
r3280 r5735 34 34 35 35 #include "tools/BillboardSet.h" 36 #include " objects/Scene.h"37 #include " objects/infos/PlayerInfo.h"36 #include "Scene.h" 37 #include "infos/PlayerInfo.h" 38 38 39 39 namespace orxonox -
code/branches/libraries2/src/orxonox/worldentities/pawns/Spectator.h
r3196 r5735 33 33 34 34 #include "util/Math.h" 35 #include " objects/worldentities/ControllableEntity.h"35 #include "worldentities/ControllableEntity.h" 36 36 37 37 namespace orxonox -
code/branches/libraries2/src/orxonox/worldentities/pawns/TeamBaseMatchBase.cc
r3325 r5735 33 33 #include "interfaces/PawnListener.h" 34 34 #include "interfaces/TeamColourable.h" 35 #include " objects/gametypes/TeamBaseMatch.h"35 #include "gametypes/TeamBaseMatch.h" 36 36 37 37 namespace orxonox
Note: See TracChangeset
for help on using the changeset viewer.