summaryrefslogtreecommitdiff
path: root/src/resources/animation.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/resources/animation.h')
-rw-r--r--src/resources/animation.h13
1 files changed, 9 insertions, 4 deletions
diff --git a/src/resources/animation.h b/src/resources/animation.h
index 09738620c..9851e1c24 100644
--- a/src/resources/animation.h
+++ b/src/resources/animation.h
@@ -95,16 +95,21 @@ class Animation final
void setLastFrameDelay(const int delay);
+ typedef std::vector<Frame> Frames;
+ typedef Frames::iterator FramesIter;
+ typedef Frames::reverse_iterator FramesRevIter;
+
+#ifdef UNITTESTS
+ Frames &getFrames()
+ { return mFrames; }
+#endif
+
/**
* Determines whether the given animation frame is a terminator.
*/
static bool isTerminator(const Frame &phase) A_WARN_UNUSED;
protected:
- typedef std::vector<Frame> Frames;
- typedef Frames::iterator FramesIter;
- typedef Frames::reverse_iterator FramesRevIter;
-
Frames mFrames;
int mDuration;
};