Changeset 4746 in orxonox.OLD for orxonox/trunk/src/util/animation/animation_player.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_player.cc
r4597 r4746 82 82 \brief empties the list AND deletes all the Animations 83 83 */ 84 void AnimationPlayer::flush( void)84 void AnimationPlayer::flush() 85 85 { 86 86 // deleting the Animation List AND all the elements of the List … … 126 126 \brief starts playing the AnimationPlayer 127 127 */ 128 void AnimationPlayer::play( void)128 void AnimationPlayer::play() 129 129 { 130 130 this->bRunning = true; … … 134 134 \brief pauses playing of the AnimationPlayer 135 135 */ 136 void AnimationPlayer::pause( void)136 void AnimationPlayer::pause() 137 137 { 138 138 this->bRunning = false; … … 166 166 \brief Outputs some nice debug-information 167 167 */ 168 void AnimationPlayer::debug( void)168 void AnimationPlayer::debug() 169 169 { 170 170 PRINT(0)("+------------------------------------+\n");
Note: See TracChangeset
for help on using the changeset viewer.