Changeset 11071 for code/trunk/src/orxonox/controllers/WingmanController.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/WingmanController.h
r11052 r11071 51 51 52 52 //----[orxonox demanded functions]---- 53 virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode); 54 55 virtual void tick(float dt); 56 virtual bool hasWingman() 53 virtual bool hasWingman() override 57 54 { return false; } 58 virtual bool hasFollower() 55 virtual bool hasFollower() override 59 56 { return false; } 60 57 //----[/orxonox demanded functions]---- … … 66 63 protected: 67 64 //----action must only be managed by this---- 68 virtual void action() ; //<! action() is called in regular intervals managing the bot's behaviour.65 virtual void action() override; //<! action() is called in regular intervals managing the bot's behaviour. 69 66 Vector3 getFormationPosition (); 70 67 void keepFormation();
Note: See TracChangeset
for help on using the changeset viewer.