Added INotifyBurstComplete trait interface to notify when a full salvo has been fired

This commit is contained in:
teees
2016-04-21 11:23:50 +02:00
committed by Oliver Brakmann
parent 8de91be069
commit 524bc3d45f
2 changed files with 4 additions and 0 deletions

View File

@@ -35,6 +35,7 @@ namespace OpenRA.Mods.Common.Traits
}
public interface INotifyAttack { void Attacking(Actor self, Target target, Armament a, Barrel barrel); }
public interface INotifyBurstComplete { void FiredBurst(Actor self, Target target, Armament a); }
public interface INotifyCharging { void Charging(Actor self, Target target); }
public interface INotifyChat { bool OnChat(string from, string message); }
public interface INotifyParachuteLanded { void OnLanded(Actor ignore); }