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.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/resources/animation.h b/src/resources/animation.h
index a78850b3a..9ec8396af 100644
--- a/src/resources/animation.h
+++ b/src/resources/animation.h
@@ -26,6 +26,7 @@
#include <libxml/tree.h>
#include <vector>
+#include <string>
class Image;
@@ -38,6 +39,7 @@ struct Frame
int delay;
int offsetX;
int offsetY;
+ std::string nextAction;
};
/**
@@ -78,6 +80,8 @@ class Animation
int getDuration() const
{ return mDuration; }
+ void addJump(std::string name);
+
/**
* Determines whether the given animation frame is a terminator.
*/