Add some ToString overrides to improve debug experience.

This commit is contained in:
RoosterDragon
2021-09-25 12:52:08 +01:00
committed by Paul Chote
parent 3a020e96fe
commit 4cc33b2871
3 changed files with 17 additions and 1 deletions

View File

@@ -50,6 +50,11 @@ namespace OpenRA
BottomRight = bottomRight.ToCPos(gridType);
}
public override string ToString()
{
return $"{TopLeft}->{BottomRight}";
}
/// <summary>Expand the specified region with an additional cordon. This may expand the region outside the map borders.</summary>
public static CellRegion Expand(CellRegion region, int cordon)
{