mirror of https://github.com/AxioDL/metaforce.git
32 lines
607 B
C++
32 lines
607 B
C++
#include "CPOINode.hpp"
|
|
|
|
namespace urde
|
|
{
|
|
|
|
CPOINode::CPOINode(const std::string& name, u16 a, const CCharAnimTime& time,
|
|
u32 index, bool c, float weight, u32 e, u32 f)
|
|
: x4_(1),
|
|
x8_name(name),
|
|
x18_(a),
|
|
x1c_time(time),
|
|
x24_index(index),
|
|
x28_(c),
|
|
x2c_weight(weight),
|
|
x30_(e),
|
|
x34_(f)
|
|
{}
|
|
|
|
CPOINode::CPOINode(CInputStream& in)
|
|
: x4_(in.readUint16Big()),
|
|
x8_name(in.readString()),
|
|
x18_(in.readUint16Big()),
|
|
x1c_time(in),
|
|
x24_index(in.readUint32Big()),
|
|
x28_(in.readBool()),
|
|
x2c_weight(in.readFloatBig()),
|
|
x30_(in.readUint32Big()),
|
|
x34_(in.readUint32Big())
|
|
{}
|
|
|
|
}
|