This commit is contained in:
Chris Forbes
2009-11-09 21:19:37 +13:00
parent 0e1e62eacc
commit 49f48bef6a
4 changed files with 42 additions and 6 deletions

View File

@@ -13,4 +13,5 @@ namespace OpenRa.Game.Traits
interface IRender { IEnumerable<Pair<Sprite, float2>> Render(Actor self); }
interface IOrder { Order Order(Actor self, int2 xy, bool lmb, Actor underCursor); }
interface INotifyDamage { void Damaged(Actor self, DamageState ds); }
interface INotifyDamageEx : INotifyDamage { void Damaged(Actor self, int damage); }
}