work on skyfire

This commit is contained in:
Milxnor
2023-05-19 20:21:24 -04:00
parent 45fbfbef74
commit f37e15927f
22 changed files with 250 additions and 52 deletions

View File

@@ -7,6 +7,11 @@ public:
float Y;
float Z;
bool CompareVectors(const FVector& A)
{
return X == A.X && Y == A.Y && Z == A.Z;
}
FVector() : X(0), Y(0), Z(0) {}
FVector(float x, float y, float z) : X(x), Y(y), Z(z) {}
@@ -35,10 +40,10 @@ public:
return FVector{ this->X * A, this->Y * A, this->Z * A };
}
bool operator==(const FVector& A)
/* bool operator==(const FVector& A)
{
return X == A.X && Y == A.Y && Z == A.Z;
}
} */
void operator+=(const FVector& A)
{