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.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/resources/animation.h b/src/resources/animation.h
index 9ec8396af..5130bc8dd 100644
--- a/src/resources/animation.h
+++ b/src/resources/animation.h
@@ -35,10 +35,17 @@ class Image;
*/
struct Frame
{
+ enum FrameType
+ {
+ ANIMATION = 0,
+ JUMP,
+ LABEL
+ };
Image *image;
int delay;
int offsetX;
int offsetY;
+ FrameType type;
std::string nextAction;
};