mfw i forget clone()

This commit is contained in:
sylvessa 2026-03-23 23:37:32 -05:00
parent 61d027badf
commit 98be92ed0c

View file

@ -184,6 +184,8 @@ public class Location
return this;
}
public Location clone() => new Location(LocationWorld, X, Y, Z, Yaw, Pitch);
/// <inheritdoc/>
public override string ToString() => $"Location(world={LocationWorld}, x={X}, y={Y}, z={Z}, yaw={Yaw}, pitch={Pitch})";
}