Changeset 6487 for code/branches/tutorial/src/orxonox/worldentities/Drone.h
- Timestamp:
- Mar 7, 2010, 11:27:20 PM (15 years ago)
- Location:
- code/branches/tutorial
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/tutorial
- Property svn:mergeinfo changed
/code/branches/tutorial merged: 5841
- Property svn:mergeinfo changed
-
code/branches/tutorial/src/orxonox/worldentities/Drone.h
r6483 r6487 105 105 */ 106 106 inline void setPrimaryThrust( float thrust ) 107 { this->primaryThrust_=thrust; } 108 inline void setAuxilaryThrust( float thrust ) 109 { this->auxilaryThrust_=thrust; } 110 inline void setRotationThrust( float thrust ) 111 { this->rotationThrust_=thrust; } 107 { this->primaryThrust_=thrust; } 108 // place your set-functions here. 109 // - hint: auxiliary thrust, rotation thrust. 112 110 113 111 /** … … 117 115 inline float getPrimaryThrust() 118 116 { return this->primaryThrust_; } 119 inline float getAuxilaryThrust() 120 { return this->auxilaryThrust_; } 121 inline float getRotationThrust() 122 { return this->rotationThrust_; } 117 // place your get-functions here. 123 118 124 119 private:
Note: See TracChangeset
for help on using the changeset viewer.