alright im not so happy

This commit is contained in:
Milxnor
2023-05-12 17:50:58 -04:00
parent f41be934eb
commit bd87832147
21 changed files with 394 additions and 38 deletions

View File

@@ -21,6 +21,11 @@ public:
return (A <= B) ? A : B;
}
static FORCEINLINE float InvSqrt(float F)
{
return 1.0f / sqrtf(F);
}
static FORCENOINLINE float Fmod(float X, float Y);
static FORCEINLINE int32 FloorToInt(float F)