Changeset 11071 for code/trunk/src/orxonox/controllers/SectionController.h
- Timestamp:
- Jan 17, 2016, 10:29:21 PM (9 years ago)
- Location:
- code/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
- Property svn:mergeinfo changed
-
code/trunk/src/orxonox/controllers/SectionController.h
r11052 r11071 49 49 //----[/language demanded functions]---- 50 50 51 //----[orxonox demanded functions]----52 virtual void tick(float dt);53 54 virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode);55 //----[/orxonox demanded functions]----56 57 51 //----[own functions]---- 58 52 ActionpointController* findNewDivisionLeader(); 59 53 60 virtual bool setWingman(ActionpointController* newWingman) ;61 virtual bool hasWingman() ;62 virtual bool hasFollower() 54 virtual bool setWingman(ActionpointController* newWingman) override; 55 virtual bool hasWingman() override; 56 virtual bool hasFollower() override 63 57 { return false; } 64 58 void chooseTarget(); … … 67 61 protected: 68 62 //----action must only be managed by this---- 69 virtual void action() ; //<! action() is called in regular intervals by MasterController managing the bot's behaviour.63 virtual void action() override; //<! action() is called in regular intervals by MasterController managing the bot's behaviour. 70 64 Vector3 getFormationPosition (); 71 65 void keepFormation();
Note: See TracChangeset
for help on using the changeset viewer.