Add new interfaces for support powers.

This commit is contained in:
Matthias Mailänder
2020-03-08 19:37:20 +01:00
committed by atlimit8
parent e42d177920
commit b3b0aa75ae
2 changed files with 7 additions and 0 deletions

View File

@@ -133,6 +133,7 @@ namespace OpenRA.Mods.Common.Traits
[RequireExplicitImplementation]
public interface INotifyPowerLevelChanged { void PowerLevelChanged(Actor self); }
public interface INotifySupportPower { void Charged(Actor self); void Activated(Actor self); }
public interface INotifyBuildingPlaced { void BuildingPlaced(Actor self); }
public interface INotifyNuke { void Launching(Actor self); }