mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2026-01-01 01:01:19 -06:00
32 lines
406 B
C++
32 lines
406 B
C++
#pragma once
|
|
|
|
#include "SWA.inl"
|
|
|
|
namespace Hedgehog::Math
|
|
{
|
|
class CVector2
|
|
{
|
|
public:
|
|
be<float> X;
|
|
be<float> Y;
|
|
};
|
|
|
|
class CVector
|
|
{
|
|
public:
|
|
be<float> X;
|
|
be<float> Y;
|
|
be<float> Z;
|
|
be<float> W;
|
|
};
|
|
|
|
class CVector4
|
|
{
|
|
public:
|
|
be<float> X;
|
|
be<float> Y;
|
|
be<float> Z;
|
|
be<float> W;
|
|
};
|
|
}
|