mirror of
https://github.com/hedge-dev/UnleashedRecomp
synced 2026-06-08 20:30:02 -04:00
a13fdc136b
Co-authored-by: Skyth (Asilkan) <19259897+blueskythlikesclouds@users.noreply.github.com>
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;
|
|
};
|
|
}
|