mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2026-01-04 02:31:10 -06:00
18 lines
259 B
C++
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);
|
|
}
|