summaryrefslogtreecommitdiff
path: root/src/resources/animation.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2011-04-09 03:13:43 +0300
committerAndrei Karas <akaras@inbox.ru>2011-04-09 03:13:43 +0300
commit3968453eb82521f6ab3966ff1dc08cd0c803d359 (patch)
treef1bec30f7e0baeb119cbb987873a5c5749cc119f /src/resources/animation.h
parent73ff0a5f6b3fe6b26df14eb1dae413a26d002bbb (diff)
downloadplus-3968453eb82521f6ab3966ff1dc08cd0c803d359.tar.gz
plus-3968453eb82521f6ab3966ff1dc08cd0c803d359.tar.bz2
plus-3968453eb82521f6ab3966ff1dc08cd0c803d359.tar.xz
plus-3968453eb82521f6ab3966ff1dc08cd0c803d359.zip
Add enum to animation actions support.
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;
};