This commit is contained in:
Scorpio Blood
2024-05-13 22:39:40 +02:00
57 changed files with 10584 additions and 587 deletions

View File

@@ -0,0 +1,12 @@
#include "Core/public/Math/Vector2.h"
namespace PMath = Phanes::Core::Math;
int main()
{
float t = 2;
PMath::Clamp(t, 2.0f, 4.0f);
return 0;
}