Made core math lib header only.

This commit is contained in:
scorpioblood
2024-05-17 23:50:37 +02:00
parent 69f0f3ead0
commit 048e598858
29 changed files with 5116 additions and 6535 deletions

View File

@@ -1,12 +1,11 @@
#include "Core/public/Math/Vector2.h"
namespace PMath = Phanes::Core::Math;
#include <iostream>
int main()
{
float t = 2;
PMath::Clamp(t, 2.0f, 4.0f);
int x = 13;
x %= 7;
return 0;
std::cout << x;
return 0;
}