metaforce/Runtime/Character/CAnimation.hpp

24 lines
470 B
C++
Raw Normal View History

2016-04-13 06:07:23 +00:00
#ifndef __URDE_CANIMATION_HPP__
#define __URDE_CANIMATION_HPP__
2016-04-10 21:22:59 +00:00
#include "IOStreams.hpp"
#include "CMetaAnimFactory.hpp"
namespace urde
{
class IMetaAnim;
class CAnimation
{
std::string x0_name;
std::shared_ptr<IMetaAnim> x10_anim;
public:
CAnimation(CInputStream& in);
2016-04-13 06:07:23 +00:00
const std::shared_ptr<IMetaAnim>& GetMetaAnim() const {return x10_anim;}
2016-05-03 08:27:28 +00:00
const std::string& GetMetaAnimName() const { return x0_name; }
2016-04-10 21:22:59 +00:00
};
}
2016-04-13 06:07:23 +00:00
#endif // __URDE_CANIMATION_HPP__