diff options
Diffstat (limited to 'src/animation.h')
-rw-r--r-- | src/animation.h | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/src/animation.h b/src/animation.h index 605d8cb1..8f62b9c4 100644 --- a/src/animation.h +++ b/src/animation.h @@ -110,51 +110,4 @@ class Animation unsigned int mTime; }; -/** - * An action consists of several animations, one for each direction. - */ -class Action -{ - public: - /** - * Constructor. - */ - Action(); - - /** - * Destructor. - */ - ~Action(); - - /** - * Sets the spriteset used by this action. - */ - void - setSpriteset(Spriteset *spriteset) { mSpriteset = spriteset; } - - /** - * Returns the spriteset used by this action. - */ - Spriteset* - getSpriteset() const { return mSpriteset; } - - void - setAnimation(int direction, Animation *animation); - - /** - * Resets all animations associated with this action. - */ - void - reset(); - - Animation* - getAnimation(int direction) const; - - protected: - Spriteset *mSpriteset; - typedef std::map<int, Animation*> Animations; - typedef Animations::iterator AnimationIterator; - Animations mAnimations; -}; - #endif |