mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2025-12-31 00:10:26 -06:00
33 lines
408 B
C++
33 lines
408 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;
|
|
};
|
|
}
|
|
|
|
#include "Vector.inl"
|