- Timestamp:
- Jun 16, 2009, 2:25:05 PM (16 years ago)
- Location:
- code/branches/pch/src/orxonox/objects/worldentities/pawns
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/pch/src/orxonox/objects/worldentities/pawns/Pawn.cc
r3177 r3186 29 29 #include "Pawn.h" 30 30 31 #include "core/CoreIncludes.h" 31 32 #include "core/GameMode.h" 32 #include "core/CoreIncludes.h"33 33 #include "core/XMLPort.h" 34 #include "util/Math.h" 34 #include "network/NetworkFunction.h" 35 36 #include "interfaces/PawnListener.h" 35 37 #include "PawnManager.h" 36 #include "interfaces/PawnListener.h"37 38 #include "objects/infos/PlayerInfo.h" 38 39 #include "objects/gametypes/Gametype.h" … … 40 41 #include "objects/worldentities/ExplosionChunk.h" 41 42 #include "objects/worldentities/BigExplosion.h" 42 43 43 #include "objects/weaponsystem/WeaponSystem.h" 44 44 #include "objects/weaponsystem/WeaponSlot.h" … … 46 46 #include "objects/weaponsystem/WeaponSet.h" 47 47 48 #include "network/NetworkFunction.h"49 48 50 49 namespace orxonox -
code/branches/pch/src/orxonox/objects/worldentities/pawns/Pawn.h
r3177 r3186 31 31 32 32 #include "OrxonoxPrereqs.h" 33 34 #include <string> 35 #include "interfaces/RadarViewable.h" 33 36 #include "objects/worldentities/ControllableEntity.h" 34 #include "interfaces/RadarViewable.h"35 37 #include "objects/pickup/PickupCollection.h" 36 38 -
code/branches/pch/src/orxonox/objects/worldentities/pawns/SpaceShip.cc
r3164 r3186 31 31 #include <BulletDynamics/Dynamics/btRigidBody.h> 32 32 33 #include "util/Math.h"34 33 #include "core/CoreIncludes.h" 35 34 #include "core/ConfigValueIncludes.h" -
code/branches/pch/src/orxonox/objects/worldentities/pawns/SpaceShip.h
r3164 r3186 32 32 #include "OrxonoxPrereqs.h" 33 33 34 #include <string> 34 35 #include <LinearMath/btVector3.h> 35 36 #include "util/Math.h" 36 37 #include "Pawn.h" 37 38 -
code/branches/pch/src/orxonox/objects/worldentities/pawns/Spectator.cc
r3110 r3186 34 34 #include "core/ConfigValueIncludes.h" 35 35 #include "core/GameMode.h" 36 #include "objects/worldentities/Model.h" 36 37 #include "tools/BillboardSet.h" 37 38 #include "objects/Scene.h" 38 39 #include "objects/infos/PlayerInfo.h" 39 #include "objects/gametypes/Gametype.h"40 #include "tools/BillboardSet.h"41 #include "overlays/OverlayText.h"42 #include "overlays/OverlayGroup.h"43 #include "util/Convert.h"44 40 45 41 namespace orxonox -
code/branches/pch/src/orxonox/objects/worldentities/pawns/Spectator.h
r3053 r3186 32 32 #include "OrxonoxPrereqs.h" 33 33 34 #include "util/Math.h" 34 35 #include "objects/worldentities/ControllableEntity.h" 35 36 -
code/branches/pch/src/orxonox/objects/worldentities/pawns/TeamBaseMatchBase.cc
r3183 r3186 29 29 30 30 #include "TeamBaseMatchBase.h" 31 31 32 #include "core/CoreIncludes.h" 33 #include "interfaces/PawnListener.h" 34 #include "interfaces/TeamColourable.h" 32 35 #include "objects/gametypes/TeamBaseMatch.h" 33 #include "interfaces/TeamColourable.h"34 #include "interfaces/PawnListener.h"35 36 36 37 namespace orxonox -
code/branches/pch/src/orxonox/objects/worldentities/pawns/TeamBaseMatchBase.h
r3033 r3186 30 30 #define _TeamBaseMatchBase_H__ 31 31 32 #include "OrxonoxPrereqs.h" 33 32 34 #include "Pawn.h" 33 35 34 36 namespace orxonox 35 37 { 36 37 38 38 namespace BaseState 39 39 {
Note: See TracChangeset
for help on using the changeset viewer.