Changeset 10818 for code/branches/cpp11_v2/src/orxonox
- Timestamp:
- Nov 19, 2015, 7:55:11 PM (9 years ago)
- Location:
- code/branches/cpp11_v2/src/orxonox
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/cpp11_v2/src/orxonox/Level.cc
r10768 r10818 30 30 31 31 #include "util/Math.h" 32 #include "util/SubString.h" 32 33 #include "core/CoreIncludes.h" 33 34 #include "core/Loader.h" -
code/branches/cpp11_v2/src/orxonox/Level.h
r10817 r10818 37 37 #include "core/BaseObject.h" 38 38 #include "network/synchronisable/Synchronisable.h" 39 #include "core/object/Context.h" 39 40 #include "graphics/MeshLodInformation.h" 40 41 -
code/branches/cpp11_v2/src/orxonox/Scene.h
r10817 r10818 40 40 #include "util/OgreForwardRefs.h" 41 41 #include "core/BaseObject.h" 42 #include "core/object/Context.h" 42 43 #include "network/synchronisable/Synchronisable.h" 43 44 #include "tools/interfaces/Tickable.h" -
code/branches/cpp11_v2/src/orxonox/chat/ChatHistory.cc
r10624 r10818 30 30 #include "core/singleton/ScopedSingletonIncludes.h" 31 31 #include "core/ConfigurablePaths.h" 32 #include "core/CoreIncludes.h" 32 33 33 34 #ifndef CHATTEST -
code/branches/cpp11_v2/src/orxonox/gamestates/GSRoot.cc
r10768 r10818 34 34 #include "core/GameMode.h" 35 35 #include "core/command/ConsoleCommandIncludes.h" 36 #include "core/object/ObjectList.h" 36 37 #include "network/NetworkFunctionIncludes.h" 37 38 #include "tools/Timer.h" -
code/branches/cpp11_v2/src/orxonox/worldentities/Drone.cc
r10768 r10818 30 30 31 31 #include "core/XMLPort.h" 32 #include "core/CoreIncludes.h" 32 33 #include "BulletDynamics/Dynamics/btRigidBody.h" 33 34 -
code/branches/cpp11_v2/src/orxonox/worldentities/pawns/FpsPlayer.cc
r9667 r10818 282 282 } 283 283 284 bool FpsPlayer::collidesAgainst(WorldEntity* otherObject, btManifoldPoint& contactPoint)284 bool FpsPlayer::collidesAgainst(WorldEntity* otherObject, const btCollisionShape* ownCollisionShape, btManifoldPoint& contactPoint) 285 285 { 286 286 if (contactPoint.m_normalWorldOnB.y() > 0.6) -
code/branches/cpp11_v2/src/orxonox/worldentities/pawns/FpsPlayer.h
r9667 r10818 69 69 virtual void fire(); 70 70 71 bool collidesAgainst(WorldEntity* otherObject, btManifoldPoint& contactPoint);71 bool collidesAgainst(WorldEntity* otherObject, const btCollisionShape* ownCollisionShape, btManifoldPoint& contactPoint) override; 72 72 73 73 virtual void addedWeaponPack(WeaponPack* wPack);
Note: See TracChangeset
for help on using the changeset viewer.