Move IRenderInfantrySequenceModifier to mod code and require explicit...

implementation.
This commit is contained in:
reaperrr
2016-10-22 19:32:50 +02:00
parent 6b29d70520
commit 9dfddaf5d9
5 changed files with 18 additions and 16 deletions

View File

@@ -195,4 +195,11 @@ namespace OpenRA.Mods.Common.Traits
[RequireExplicitImplementation]
public interface INotifyRearm { void Rearming(Actor host, Actor other); }
[RequireExplicitImplementation]
public interface IRenderInfantrySequenceModifier
{
bool IsModifyingSequence { get; }
string SequencePrefix { get; }
}
}