StyleCop clean Map

move non-map specific functions to FileFormats
This commit is contained in:
Matthias Mailänder
2013-08-04 09:10:54 +02:00
parent 452342f289
commit 05f165357d
3 changed files with 57 additions and 58 deletions

View File

@@ -232,6 +232,16 @@ namespace OpenRA
return result;
}
public static T[,] ResizeArray<T>(T[,] ts, T t, int width, int height)
{
var result = new T[width, height];
for (var i = 0; i < width; i++)
for (var j = 0; j < height; j++)
result[i, j] = i <= ts.GetUpperBound(0) && j <= ts.GetUpperBound(1)
? ts[i, j] : t;
return result;
}
public static Rectangle Bounds(this Bitmap b) { return new Rectangle(0, 0, b.Width, b.Height); }
public static int ToBits(this IEnumerable<bool> bits)