prime/include/Kyoto/Animation/CAnimation.hpp

19 lines
315 B
C++
Raw Normal View History

#ifndef _CANIMATION
#define _CANIMATION
#include "rstl/rc_ptr.hpp"
#include "rstl/string.hpp"
class IMetaAnim;
class CAnimation {
public:
const rstl::rc_ptr< IMetaAnim >& GetMetaAnim() const { return x10_anim; }
private:
rstl::string x0_name;
rstl::rc_ptr< IMetaAnim > x10_anim;
};
#endif // _CANIMATION