mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-13 19:51:22 +00:00
Normalizes the headers for the cpp files in the RuntimeCommon target. Now all headers and source files within the RuntimeCommon/RuntimeCommonB targets are normalized and consistent with one another.
13 lines
260 B
C++
13 lines
260 B
C++
#include "Runtime/Character/CAnimation.hpp"
|
|
|
|
#include "Runtime/Character/CMetaAnimFactory.hpp"
|
|
|
|
namespace urde {
|
|
|
|
CAnimation::CAnimation(CInputStream& in) {
|
|
x0_name = in.readString();
|
|
x10_anim = CMetaAnimFactory::CreateMetaAnim(in);
|
|
}
|
|
|
|
} // namespace urde
|