Changeset 8729 for code/trunk/src/orxonox/controllers
- Timestamp:
- Jul 4, 2011, 2:47:44 AM (14 years ago)
- Location:
- code/trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
-
code/trunk/src/orxonox/controllers/AIController.cc
r7284 r8729 37 37 namespace orxonox 38 38 { 39 static const floatACTION_INTERVAL = 1.0f;39 const float AIController::ACTION_INTERVAL = 1.0f; 40 40 41 41 CreateFactory(AIController); -
code/trunk/src/orxonox/controllers/AIController.h
r5929 r8729 50 50 51 51 private: 52 static const float ACTION_INTERVAL; 53 52 54 Timer actionTimer_; 53 55 }; -
code/trunk/src/orxonox/controllers/DroneController.cc
r7284 r8729 43 43 CreateFactory(DroneController); 44 44 45 static const floatACTION_INTERVAL = 1.0f;45 const float DroneController::ACTION_INTERVAL = 1.0f; 46 46 47 47 DroneController::DroneController(BaseObject* creator) : ArtificialController(creator) -
code/trunk/src/orxonox/controllers/DroneController.h
r7163 r8729 69 69 70 70 private: 71 static const float ACTION_INTERVAL; 72 71 73 Timer actionTimer_; 72 74 WeakPtr<Pawn> owner_;
Note: See TracChangeset
for help on using the changeset viewer.