mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-13 19:11:20 +00:00
12 lines
223 B
C++
12 lines
223 B
C++
#include "CAnimation.hpp"
|
|
#include "CMetaAnimFactory.hpp"
|
|
|
|
namespace urde {
|
|
|
|
CAnimation::CAnimation(CInputStream& in) {
|
|
x0_name = in.readString();
|
|
x10_anim = CMetaAnimFactory::CreateMetaAnim(in);
|
|
}
|
|
|
|
} // namespace urde
|