Files
UnleashedRecomp-hedge-dev/UnleashedRecomp/api/Hedgehog/Math/Quaternion.h
2025-01-17 20:17:16 +00:00

18 lines
259 B
C++

#pragma once
#include <SWA.inl>
namespace Hedgehog::Math
{
class CQuaternion //Eigen::Quaternionf;
{
public:
be<float> X;
be<float> Y;
be<float> Z;
be<float> W;
};
SWA_ASSERT_SIZEOF(CQuaternion, 0x10);
}