mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2026-01-02 01:30:25 -06:00
31 lines
385 B
C++
31 lines
385 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;
|
|
};
|
|
|
|
class CVector4
|
|
{
|
|
public:
|
|
be<float> X;
|
|
be<float> Y;
|
|
be<float> Z;
|
|
be<float> W;
|
|
};
|
|
}
|