diff --git a/Raylib-cs/types/Color.cs b/Raylib-cs/types/Color.cs index 47f2e92..b3cb2e7 100644 --- a/Raylib-cs/types/Color.cs +++ b/Raylib-cs/types/Color.cs @@ -221,9 +221,4 @@ public record struct Color { return (byte)(a + (b - a) * t); } - - public readonly override string ToString() - { - return $"{{R:{R} G:{G} B:{B} A:{A}}}"; - } } diff --git a/Raylib-cs/types/Rectangle.cs b/Raylib-cs/types/Rectangle.cs index a744444..bc88220 100644 --- a/Raylib-cs/types/Rectangle.cs +++ b/Raylib-cs/types/Rectangle.cs @@ -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}}}"; - } }