Add CargoCondition(s) to Passenger

This commit is contained in:
Mustafa Alperen Seki
2018-04-18 12:25:07 +03:00
committed by Paul Chote
parent 3febae1644
commit 6c5c4a129f
3 changed files with 62 additions and 2 deletions

View File

@@ -150,6 +150,12 @@ namespace OpenRA.Mods.Common.Traits
[RequireExplicitImplementation]
public interface INotifyPassengerExited { void OnPassengerExited(Actor self, Actor passenger); }
[RequireExplicitImplementation]
public interface INotifyEnteredCargo { void OnEnteredCargo(Actor self, Actor cargo); }
[RequireExplicitImplementation]
public interface INotifyExitedCargo { void OnExitedCargo(Actor self, Actor cargo); }
[RequireExplicitImplementation]
public interface IObservesVariablesInfo : ITraitInfo { }