From 9ea2a7a0bd6409f1c4df3bcf21a3aa39d93af7c9 Mon Sep 17 00:00:00 2001 From: abcdefg30 Date: Sat, 23 Jan 2016 14:38:04 +0100 Subject: [PATCH] Add [RequireExplicitImplementation] to the ICrushable interface --- OpenRA.Game/Traits/TraitsInterfaces.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/OpenRA.Game/Traits/TraitsInterfaces.cs b/OpenRA.Game/Traits/TraitsInterfaces.cs index 6a50dc87c3..50187777f5 100644 --- a/OpenRA.Game/Traits/TraitsInterfaces.cs +++ b/OpenRA.Game/Traits/TraitsInterfaces.cs @@ -301,6 +301,7 @@ namespace OpenRA.Traits public interface IFacingInfo : ITraitInfoInterface { int GetInitialFacing(); } + [RequireExplicitImplementation] public interface ICrushable { bool CrushableBy(HashSet crushClasses, Player owner);