added AnimationSequence struct

This commit is contained in:
gered 2012-12-10 18:59:36 -05:00
parent d1de2e1890
commit b10c3cb2c4

View file

@ -0,0 +1,15 @@
#ifndef __ASSETS_ANIMATIONSEQUENCE_H_INCLUDED__
#define __ASSETS_ANIMATIONSEQUENCE_H_INCLUDED__
#include "../common.h"
#include <string>
class AnimationSequence
{
public:
std::string name;
uint32_t start;
uint32_t end;
};
#endif