Changeset 4746 in orxonox.OLD for orxonox/trunk/src/util/animation/animation.cc
- Timestamp:
- Jul 1, 2005, 12:48:48 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/util/animation/animation.cc
r4597 r4746 25 25 This also adds the Animation automatically to the AnimationPlayer's list 26 26 */ 27 Animation::Animation( void)27 Animation::Animation() 28 28 { 29 29 this->setClassID(CL_ANIMATION, "Animation"); … … 48 48 this also takes the animation out of the AnimationPlayer's list (if it is there) 49 49 */ 50 Animation::~Animation( void)50 Animation::~Animation() 51 51 { 52 52 this->doNotHandle(); … … 59 59 This means that it will not be ticked, and not be deleted with the AnimationPlayer 60 60 */ 61 void Animation::doNotHandle( void)61 void Animation::doNotHandle() 62 62 { 63 63 if (this->bHandled) … … 77 77 \brief handles the Animation if it gets out of boundraries eg. if animation is finished. 78 78 */ 79 void Animation::handleInfinity( void)79 void Animation::handleInfinity() 80 80 { 81 81 switch (this->postInfinity)
Note: See TracChangeset
for help on using the changeset viewer.