Sound and Animation support for DonateCash

This commit is contained in:
Forcecore
2017-07-24 10:38:37 -05:00
committed by reaperrr
parent d170262e09
commit 18c6fe09db
6 changed files with 110 additions and 3 deletions

View File

@@ -370,4 +370,10 @@ namespace OpenRA.Mods.Common.Traits
void OnObjectiveCompleted(Player player, int objectiveID);
void OnObjectiveFailed(Player player, int objectiveID);
}
public interface INotifyCashTransfer
{
void OnAcceptingCash(Actor self, Actor donor);
void OnDeliveringCash(Actor self, Actor acceptor);
}
}