Watch
2
0
Fork
You've already forked raylib-cs
0

Remove ToString overrides for record structs

This commit is contained in:
Samuel Jackson Gido 2026-02-14 20:06:48 -06:00
commit c4b27b31cc
2 changed files with 0 additions and 10 deletions

View file

@ -106,9 +106,4 @@ public record struct Rectangle
Width -= shrink * 2.0f;
Height -= shrink * 2.0f;
}
public readonly override string ToString()
{
return $"{{X:{X} Y:{Y} Width:{Width} Height:{Height}}}";
}
}