Add tostring to MVector3

This commit is contained in:
Nick 2023-04-22 16:16:02 -04:00
parent 639a7b3ca6
commit 2fb6324c1c

View File

@ -26,5 +26,7 @@ namespace NewHorizons.External.SerializableData
{ {
return new Vector3(vec.x, vec.y, vec.z); return new Vector3(vec.x, vec.y, vec.z);
} }
public override string ToString() => $"{x}, {y}, {z}";
} }
} }