IActivity no longer passed Mobiles around.

This commit is contained in:
Bob
2009-11-25 18:18:17 +13:00
parent 2aea110497
commit 5c3da9387b
9 changed files with 26 additions and 23 deletions

View File

@@ -8,7 +8,7 @@ namespace OpenRa.Game.Traits.Activities
interface IActivity
{
IActivity NextActivity { get; set; }
IActivity Tick( Actor self, Mobile mobile );
void Cancel( Actor self, Mobile mobile );
IActivity Tick( Actor self );
void Cancel( Actor self );
}
}