Finish theif logic. TODO: Determine amount to steal

This commit is contained in:
Paul Chote
2010-01-08 21:59:28 +13:00
parent d03ee4c0c5
commit fc2b671b2c
6 changed files with 35 additions and 25 deletions

View File

@@ -17,6 +17,7 @@ namespace OpenRa.Game.Traits
interface INotifyDamage { void Damaged(Actor self, AttackInfo e); }
interface INotifyBuildComplete { void BuildingComplete (Actor self); }
interface INotifyProduction { void UnitProduced(Actor self, Actor other); }
interface IAcceptThief { void OnSteal(Actor self, Actor thief); }
interface IOrder
{
Order IssueOrder( Actor self, int2 xy, MouseInput mi, Actor underCursor );