12 lines
156 B
C++
12 lines
156 B
C++
#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;
|
|
} |