Add VTOL landing exhaust animation.

This commit is contained in:
Matthias Mailänder
2022-08-03 19:12:36 +02:00
committed by Gustas
parent 1073a7124f
commit aa14c9c570
6 changed files with 115 additions and 0 deletions

View File

@@ -147,6 +147,11 @@ namespace OpenRA.Mods.Common.Traits
void StoppingResupply(Actor self, Actor host);
}
[RequireExplicitImplementation]
public interface INotifyTakeOff { void TakeOff(Actor self); }
[RequireExplicitImplementation]
public interface INotifyLanding { void Landing(Actor self); }
[RequireExplicitImplementation]
public interface INotifyPowerLevelChanged { void PowerLevelChanged(Actor self); }
public interface INotifySupportPower { void Charged(Actor self); void Activated(Actor self); }