Add CCollisionActorManager

Former-commit-id: dca89789f2
This commit is contained in:
2022-10-28 14:06:29 -07:00
parent 83055d527d
commit 8b5b9757f3
30 changed files with 441 additions and 56 deletions

View File

@@ -0,0 +1,22 @@
#ifndef _CBONETRACKING
#define _CBONETRACKING
#include "Kyoto/Animation/CSegId.hpp"
#include "Kyoto/Math/CQuaternion.hpp"
#include "Kyoto/Math/CVector3f.hpp"
#include "rstl/optional_object.hpp"
class CBoneTracking {
private:
CQuaternion x0_rotation;
float x10_;
CSegId x14_segId;
float x18_time;
float x1c_maxTrackingAngle;
float x20_angSpeed;
rstl::optional_object<CVector3f> x24_targetPosition;
TUniqueId x34_target;
uchar x36_flags;
};
#endif // _CBONETRACKING