Fix mac building (#157)

Co-authored-by: MegaMech <MegaMech@users.noreply.github.com>
This commit is contained in:
inspectredc
2025-01-18 16:19:33 +00:00
committed by GitHub
parent 8c46368d5d
commit 51d2f2ec97
2 changed files with 12 additions and 1 deletions
+9
View File
@@ -19,6 +19,9 @@ struct FVector {
z = other.z;
return *this;
}
FVector() : x(0), y(0), z(0) {}
FVector(float x, float y, float z) : x(x), y(y), z(z) {}
};
/**
@@ -35,6 +38,9 @@ struct FVector2D {
z = other.z;
return *this;
}
FVector2D() : x(0), z(0) {}
FVector2D(float x, float z) : x(x), z(z) {}
};
// Sets integer X Z coordinates
@@ -62,6 +68,9 @@ struct FRotation {
roll = other.roll;
return *this;
}
FRotation() : pitch(0), yaw(0), roll(0) {}
FRotation(float p, float y, float r) : pitch(p), yaw(y), roll(r) {}
};
/**