diff --git a/OpenRA.Game/Traits/TraitsInterfaces.cs b/OpenRA.Game/Traits/TraitsInterfaces.cs index 875e4aba71..990dbc0ecf 100755 --- a/OpenRA.Game/Traits/TraitsInterfaces.cs +++ b/OpenRA.Game/Traits/TraitsInterfaces.cs @@ -82,11 +82,8 @@ namespace OpenRA.Traits } public interface IVisibilityModifier { bool IsVisible(Actor self); } - public interface IRadarColorModifier { Color RadarColorOverride(Actor self); } - public interface IHasLocation - { - int2 PxPosition { get; } - } + public interface IRadarColorModifier { Color RadarColorOverride(Actor self); } + public interface IHasLocation { int2 PxPosition { get; } } public enum SubCell { @@ -141,12 +138,9 @@ namespace OpenRA.Traits void SetPosition(Actor self, int2 cell); void SetPxPosition(Actor self, int2 px); void AdjustPxPosition(Actor self, int2 px); /* works like SetPxPosition, but visual only */ - } - - public interface IMove : ITeleportable - { - int Altitude { get; set; } - } + } + + public interface IMove : ITeleportable { int Altitude { get; set; } } public interface IFacing {