mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2026-01-07 20:19:30 -06:00
16 lines
194 B
C++
16 lines
194 B
C++
#pragma once
|
|
|
|
#include <SWA.inl>
|
|
|
|
namespace Hedgehog::Math
|
|
{
|
|
class CQuaternion
|
|
{
|
|
public:
|
|
be<float> X;
|
|
be<float> Y;
|
|
be<float> Z;
|
|
be<float> W;
|
|
};
|
|
}
|