Index: app/multi_animation.h |
diff --git a/app/multi_animation.h b/app/multi_animation.h |
index 2d4ef2c99e68a3026c7d8bb7a48678f84bdc7ce0..12a36585a769c4c5fb0976146cedd9934bfaf30a 100644 |
--- a/app/multi_animation.h |
+++ b/app/multi_animation.h |
@@ -47,6 +47,9 @@ class MultiAnimation : public Animation { |
explicit MultiAnimation(const Parts& parts); |
virtual ~MultiAnimation(); |
+ // Stops and resets the animation to the beginning. |
+ void Reset(); |
sky
2010/12/06 17:38:12
If we want this, it should be in Animation.
Evan Stade
2010/12/06 22:15:48
removed
|
+ |
// Sets whether the animation continues after it reaches the end. If true, the |
// animation runs until explicitly stopped. The default is true. |
void set_continuous(bool continuous) { continuous_ = continuous; } |