added AnimationSequence struct
This commit is contained in:
parent
d1de2e1890
commit
b10c3cb2c4
15
src/assets/animationsequence.h
Normal file
15
src/assets/animationsequence.h
Normal 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
|
Reference in a new issue