diff --git a/OpenRA.Mods.RA/Buildings/Building.cs b/OpenRA.Mods.RA/Buildings/Building.cs index e6991ce0e5..042b8a9584 100755 --- a/OpenRA.Mods.RA/Buildings/Building.cs +++ b/OpenRA.Mods.RA/Buildings/Building.cs @@ -74,6 +74,7 @@ namespace OpenRA.Mods.RA.Buildings PowerManager PlayerPower; int2 pxPosition; + public int2 TopLeft { get { return topLeft; } } public int2 PxPosition { get { return pxPosition; } } public IEnumerable ProvidesPrerequisites { get { yield return self.Info.Name; } } @@ -106,11 +107,6 @@ namespace OpenRA.Mods.RA.Buildings PlayerPower.UpdateActor(self, GetPowerUsage()); } - public int2 TopLeft - { - get { return topLeft; } - } - Pair[] occupiedCells; public IEnumerable> OccupiedCells() { return occupiedCells; }