added 'self' to IPips.GetPips

This commit is contained in:
Chris Forbes
2010-01-05 12:26:10 +13:00
parent 512e56aec7
commit 52f99cb055
6 changed files with 6 additions and 6 deletions

View File

@@ -29,7 +29,7 @@ namespace OpenRa.Game.Traits
interface IDamageModifier { float GetDamageModifier(); }
interface ISpeedModifier { float GetSpeedModifier(); }
interface IPaletteModifier { void AdjustPalette(Bitmap b); }
interface IPips { IEnumerable<PipType> GetPips(); }
interface IPips { IEnumerable<PipType> GetPips(Actor self); }
interface ITags { IEnumerable<TagType> GetTags(); }
interface IMovement
{