Add WithNukeLaunchAnimation and -Overlay traits.

This commit is contained in:
Matthias Mailänder
2017-08-26 17:45:07 +02:00
committed by Matthias Mailänder
parent c63620e979
commit 4526344eed
12 changed files with 169 additions and 16 deletions

View File

@@ -84,6 +84,7 @@ namespace OpenRA.Mods.Common.Traits
public interface INotifyBuildingPlaced { void BuildingPlaced(Actor self); }
public interface INotifyRepair { void Repairing(Actor self, Actor target); }
public interface INotifyNuke { void Launching(Actor self); }
public interface INotifyBurstComplete { void FiredBurst(Actor self, Target target, Armament a); }
public interface INotifyChat { bool OnChat(string from, string message); }
public interface INotifyProduction { void UnitProduced(Actor self, Actor other, CPos exit); }