mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-13 16:31:21 +00:00
12 lines
242 B
C++
12 lines
242 B
C++
#include "Runtime/Character/CPrimitive.hpp"
|
|
|
|
namespace metaforce {
|
|
|
|
CPrimitive::CPrimitive(CInputStream& in) {
|
|
x0_animId = in.Get<CAssetId>();
|
|
x4_animIdx = in.ReadLong();
|
|
x8_animName = in.Get<std::string>();
|
|
}
|
|
|
|
} // namespace metaforce
|