remove spurious 'set' on IDisable and associated BS implementations

This commit is contained in:
Chris Forbes
2010-05-20 12:55:29 +12:00
parent f9a2c20eee
commit 151f5acb2f
3 changed files with 9 additions and 14 deletions

View File

@@ -50,8 +50,8 @@ namespace OpenRA.Traits
float GetCost(int2 p, UnitMovementType umt);
float GetSpeedModifier(int2 p, UnitMovementType umt);
}
public interface IDisable { bool Disabled { get; set; } }
public interface IDisable { bool Disabled { get; } }
interface IProducer
{