From b10c3cb2c4c8006c237c65161bb6e2bb5b0b93e5 Mon Sep 17 00:00:00 2001 From: gered Date: Mon, 10 Dec 2012 18:59:36 -0500 Subject: [PATCH] added AnimationSequence struct --- src/assets/animationsequence.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/assets/animationsequence.h diff --git a/src/assets/animationsequence.h b/src/assets/animationsequence.h new file mode 100644 index 0000000..c1ba765 --- /dev/null +++ b/src/assets/animationsequence.h @@ -0,0 +1,15 @@ +#ifndef __ASSETS_ANIMATIONSEQUENCE_H_INCLUDED__ +#define __ASSETS_ANIMATIONSEQUENCE_H_INCLUDED__ + +#include "../common.h" +#include + +class AnimationSequence +{ +public: + std::string name; + uint32_t start; + uint32_t end; +}; + +#endif