CPlayer progress

This commit is contained in:
2024-09-28 13:43:23 -06:00
parent c4f5b352fa
commit 3a933dcd24
12 changed files with 389 additions and 15 deletions

View File

@@ -13,7 +13,7 @@ class CNUQuaternion;
class CQuaternion {
public:
CQuaternion(float w, float x, float y, float z) : w(w), imaginary(x, y, z) {}
// __ct__11CQuaternionFfRC9CVector3f
CQuaternion(float w, const CVector3f& imaginary) : w(w), imaginary(imaginary) {}
// CQuaternion(const CQuaternion& other)
// : w(other.w)