- Timestamp:
- Jan 17, 2016, 1:59:00 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/cpp11_v3/src/orxonox/controllers/DivisionController.h
r11058 r11065 51 51 52 52 //----[own functions]---- 53 virtual bool setFollower(ActionpointController* newFollower) ;54 virtual bool setWingman(ActionpointController* newWingman) ;55 virtual bool hasWingman() ;56 virtual bool hasFollower() ;53 virtual bool setFollower(ActionpointController* newFollower) override; 54 virtual bool setWingman(ActionpointController* newWingman) override; 55 virtual bool hasWingman() override; 56 virtual bool hasFollower() override; 57 57 58 58 //----[/own functions]---- 59 virtual void stayNearProtect() ;59 virtual void stayNearProtect() override; 60 60 61 61 protected: 62 62 //----action must only be managed by this---- 63 virtual void action() ; //<! action() is called in regular intervals managing the bot's behaviour.63 virtual void action() override; //<! action() is called in regular intervals managing the bot's behaviour. 64 64 65 65 private:
Note: See TracChangeset
for help on using the changeset viewer.