Changeset 10718 for code/branches/AI_HS15/src
- Timestamp:
- Oct 29, 2015, 1:17:02 PM (9 years ago)
- Location:
- code/branches/AI_HS15/src/orxonox/controllers
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/AI_HS15/src/orxonox/controllers/DivisionController.cc
r10717 r10718 47 47 48 48 } 49 } void DivisionController::tick(float dt) 50 { 51 SUPER(DivisionController, tick, dt); 52 49 53 } 50 54 bool DivisionController::setFollower(LeaderController* myFollower) -
code/branches/AI_HS15/src/orxonox/controllers/DivisionController.h
r10717 r10718 40 40 { 41 41 class _OrxonoxExport DivisionController : public LeaderController 42 {42 { 43 43 public: 44 44 DivisionController(Context* context); -
code/branches/AI_HS15/src/orxonox/controllers/LeaderController.cc
r10717 r10718 28 28 29 29 #include "LeaderController.h" 30 #include "core/CoreIncludes.h" 30 31 32 #include "core/XMLPort.h" 33 #include "core/command/ConsoleCommandIncludes.h" 34 35 #include "worldentities/ControllableEntity.h" 36 #include "worldentities/pawns/Pawn.h" 31 37 32 38 namespace orxonox -
code/branches/AI_HS15/src/orxonox/controllers/LeaderController.h
r10717 r10718 40 40 namespace orxonox 41 41 { 42 class _OrxonoxExport LeaderController : public CommonController, public Tickable42 class _OrxonoxExport LeaderController : public CommonController, virtual public Tickable 43 43 { 44 44 public:
Note: See TracChangeset
for help on using the changeset viewer.