OdysseyDecomp/lib/al/Project/Joint/KeyPose.cpp
2025-04-25 20:26:37 +02:00

17 lines
356 B
C++

#include "Project/Joint/KeyPose.h"
#include "Library/Placement/PlacementFunction.h"
#include "Library/Placement/PlacementInfo.h"
namespace al {
KeyPose::KeyPose() = default;
void KeyPose::init(const PlacementInfo& info) {
tryGetQuat(&mQuat, info);
tryGetTrans(&mTrans, info);
mPlacementInfo = new PlacementInfo(info);
}
} // namespace al