Rename Image -> Images.

This commit is contained in:
Paul Chote
2015-03-30 20:18:22 +01:00
parent 4be5334a0e
commit 84e85d8a5d
20 changed files with 3587 additions and 3583 deletions

View File

@@ -68,7 +68,7 @@ namespace OpenRA
static readonly TerrainTemplateInfo Default = new TerrainTemplateInfo(0, new string[] { null }, int2.Zero, null);
public readonly ushort Id;
public readonly string[] Image;
public readonly string[] Images;
public readonly int[] Frames;
public readonly int2 Size;
public readonly bool PickAny;
@@ -76,10 +76,10 @@ namespace OpenRA
TerrainTileInfo[] tileInfo;
public TerrainTemplateInfo(ushort id, string[] image, int2 size, byte[] tiles)
public TerrainTemplateInfo(ushort id, string[] images, int2 size, byte[] tiles)
{
this.Id = id;
this.Image = image;
this.Images = images;
this.Size = size;
}