mirror of
https://github.com/MonsterDruide1/OdysseyDecomp
synced 2026-05-09 16:58:22 +00:00
17 lines
356 B
C++
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
|