Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3821 in orxonox.OLD for orxonox/trunk/src/animation_player.h


Ignore:
Timestamp:
Apr 14, 2005, 12:48:30 AM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: pause and play function

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/animation_player.h

    r3820 r3821  
    3232  virtual ~AnimationPlayer(void);
    3333
     34  // animation handling
    3435  void addAnimation(Anim* animation);
    3536  void removeAnimation(Anim* animation);
    3637  void flush(void);
    3738
     39  // time functions
    3840  void tick(float timePassed);
     41  void play(void);
     42  void pause(void);
    3943
    4044  void debug(void);
     
    4650
    4751  /* class specific */
    48   tList<Anim>* animationList;              //!< A List of Animations to be handled
     52  tList<Anim>* animationList;              //!< A List of Animations to be handled.
     53  bool bRunning;                           //!< If the AnimationPlayer is running.
    4954};
    5055
Note: See TracChangeset for help on using the changeset viewer.