Remove unused Map.IsInMap(x,y) overload.

This commit is contained in:
Paul Chote
2014-05-17 12:42:13 +12:00
parent c5a13d4e65
commit 435f47158f

View File

@@ -461,8 +461,7 @@ namespace OpenRA
return dataStream.ToArray();
}
public bool IsInMap(CPos xy) { return IsInMap(xy.X, xy.Y); }
public bool IsInMap(int x, int y) { return Bounds.Contains(x, y); }
public bool IsInMap(CPos xy) { return Bounds.Contains(xy.X, xy.Y); }
public void Resize(int width, int height) // editor magic.
{