Dude 💀

This commit is contained in:
Gray
2024-03-20 21:45:38 -04:00
parent 138d3cc668
commit b3d9ab9e8b
46 changed files with 2846 additions and 1608 deletions

View File

@@ -2,6 +2,12 @@
#include "inc.h"
enum EForceInit
{
ForceInit,
ForceInitToZero
};
struct FVector
{
public:
@@ -62,4 +68,10 @@ public:
{
*this = *this - A;
}
explicit FORCEINLINE FVector(EForceInit)
: X(0.0f), Y(0.0f), Z(0.0f)
{
// DiagnosticCheckNaN();
}
};