Rename BridgeLayer to LegacyBridgeLayer.

This commit is contained in:
Paul Chote
2016-11-11 20:16:33 +00:00
parent a5549d3944
commit 0bc087f7bd
6 changed files with 14 additions and 10 deletions

View File

@@ -135,7 +135,7 @@ namespace OpenRA.Mods.Common.Traits
return tileSet.GetTerrainIndex(new TerrainTile(template, (byte)index));
}
public void LinkNeighbouringBridges(World world, BridgeLayer bridges)
public void LinkNeighbouringBridges(World world, LegacyBridgeLayer bridges)
{
for (var d = 0; d <= 1; d++)
{
@@ -171,7 +171,7 @@ namespace OpenRA.Mods.Common.Traits
}
public LegacyBridgeHut GetHut(int index) { return huts[index]; }
public Bridge GetNeighbor(int[] offset, BridgeLayer bridges)
public Bridge GetNeighbor(int[] offset, LegacyBridgeLayer bridges)
{
if (offset == null)
return null;