mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2025-10-30 07:11:05 +00:00
32 lines
408 B
C++
32 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"
|