Changeset 5833 for code/branches/tutorial/src/orxonox/controllers
- Timestamp:
- Sep 29, 2009, 10:24:39 PM (15 years ago)
- Location:
- code/branches/tutorial/src/orxonox/controllers
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/tutorial/src/orxonox/controllers/DroneController.cc
r5786 r5833 34 34 namespace orxonox 35 35 { 36 /** 37 @brief 38 Constructor. 39 */ 36 40 DroneController::DroneController(BaseObject* creator) : Controller(creator) 37 41 { … … 51 55 } 52 56 57 /** 58 @brief 59 The controlling happens here. This method defines what the controller has to do each tick. 60 @param dt 61 The duration of the tick. 62 */ 53 63 void DroneController::tick(float dt) 54 64 { -
code/branches/tutorial/src/orxonox/controllers/DroneController.h
r5766 r5833 37 37 namespace orxonox 38 38 { 39 /** 40 @brief 41 Controller for the Drone of the PPS tutorial. 42 @author 43 Oli Scheuss 44 */ 39 45 class _OrxonoxExport DroneController : public Controller, public Tickable 40 46 { … … 43 49 virtual ~DroneController(); 44 50 45 virtual void tick(float dt); 51 virtual void tick(float dt); //!< The controlling happens here. This method defines what the controller has to do each tick. 46 52 47 53 protected:
Note: See TracChangeset
for help on using the changeset viewer.