diff options
Diffstat (limited to 'src/resources/animation.h')
-rw-r--r-- | src/resources/animation.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/resources/animation.h b/src/resources/animation.h index 33bfd76e9..53e9adbea 100644 --- a/src/resources/animation.h +++ b/src/resources/animation.h @@ -102,13 +102,19 @@ class Animation void addGoto(std::string name, int rand); + void setLastFrameDelay(int delay); + /** * Determines whether the given animation frame is a terminator. */ static bool isTerminator(const Frame &phase); protected: - std::vector<Frame> mFrames; + typedef std::vector<Frame> Frames; + typedef Frames::iterator FramesIter; + typedef Frames::reverse_iterator FramesRevIter; + + Frames mFrames; int mDuration; }; |