Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Mar 7, 2010, 11:27:20 PM (15 years ago)
Author:
rgrieder
Message:

Merged r5841 that removes the student's code from the tutorial.

Location:
code/branches/tutorial
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • code/branches/tutorial

  • code/branches/tutorial/src/orxonox/worldentities/Drone.h

    r6483 r6487  
    105105            */
    106106            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.
    112110           
    113111            /**
     
    117115            inline float getPrimaryThrust()
    118116                { 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.
    123118           
    124119        private:
Note: See TracChangeset for help on using the changeset viewer.