metaforce/Runtime/Character/CAnimation.cpp

14 lines
209 B
C++
Raw Normal View History

2016-04-10 21:22:59 +00:00
#include "CAnimation.hpp"
#include "CMetaAnimFactory.hpp"
namespace urde
{
CAnimation::CAnimation(CInputStream& in)
{
x0_name = in.readString();
x10_anim = CMetaAnimFactory::CreateMetaAnim(in);
}
}