Change Size.ToString output to support FieldLoader.

This commit is contained in:
Paul Chote
2025-04-17 17:45:48 +01:00
committed by Gustas Kažukauskas
parent cd9001e7b9
commit 2fbbff2860

View File

@@ -74,9 +74,6 @@ namespace OpenRA.Primitives
return Width ^ Height;
}
public override string ToString()
{
return $"{{Width={Width}, Height={Height}}}";
}
public override string ToString() { return Width + "," + Height; }
}
}