add the starport active animation

This commit is contained in:
Matthias Mailänder
2014-05-20 11:10:37 +02:00
parent f1d144bfe8
commit ddb0d70fd2
9 changed files with 186 additions and 34 deletions

View File

@@ -74,6 +74,7 @@ namespace OpenRA.Traits
public interface INotifyBuildComplete { void BuildingComplete(Actor self); }
public interface INotifyBuildingPlaced { void BuildingPlaced(Actor self); }
public interface INotifyProduction { void UnitProduced(Actor self, Actor other, CPos exit); }
public interface INotifyDelivery { void IncomingDelivery(Actor self); void Delivered(Actor self); }
public interface INotifyOwnerChanged { void OnOwnerChanged(Actor self, Player oldOwner, Player newOwner); }
public interface INotifyCapture { void OnCapture(Actor self, Actor captor, Player oldOwner, Player newOwner); }
public interface INotifyHarvest { void Harvested(Actor self, ResourceType resource); }