diff options
Diffstat (limited to 'src/resources/action.h')
-rw-r--r-- | src/resources/action.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/resources/action.h b/src/resources/action.h index 3951cc02c..f9c5da75b 100644 --- a/src/resources/action.h +++ b/src/resources/action.h @@ -29,6 +29,7 @@ class Animation; + /** * An action consists of several animations, one for each direction. */ @@ -49,9 +50,12 @@ class Action void setNumber(unsigned n) { mNumber = n; } + void setLastFrameDelay(int delay); + protected: typedef std::map<int, Animation*> Animations; - typedef Animations::iterator AnimationIterator; + typedef Animations::iterator AnimationIter; + Animations mAnimations; unsigned mNumber; }; |