Allow skipping make anim for actors with WithMakeAnimation and GrantConditionOnDeploy

This commit is contained in:
reaperrr
2017-08-17 14:54:08 +02:00
committed by Paul Chote
parent f3f2621eeb
commit cab6a96b16
3 changed files with 27 additions and 8 deletions

View File

@@ -175,8 +175,8 @@ namespace OpenRA.Mods.Common.Traits
public interface INotifyDeployTriggered
{
void Deploy(Actor self);
void Undeploy(Actor self);
void Deploy(Actor self, bool skipMakeAnim);
void Undeploy(Actor self, bool skipMakeAnim);
}
public interface IAcceptResourcesInfo : ITraitInfo { }