metaforce/Runtime/Character/CAnimation.cpp

12 lines
223 B
C++
Raw Normal View History

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