api: update research

This commit is contained in:
Hyper
2025-01-15 19:47:11 +00:00
parent 064d0a1736
commit 4b7f2c0ae7
12 changed files with 272 additions and 66 deletions

View File

@@ -0,0 +1,30 @@
#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;
};
}

View File

@@ -1,13 +0,0 @@
#pragma once
#include "SWA.inl"
namespace Hedgehog::Math
{
class CVector2
{
public:
be<float> X;
be<float> Y;
};
}