Add IMove.MoveIntoWorld and IMove.VisualMove.

This commit is contained in:
Paul Chote
2014-03-19 13:10:19 +13:00
parent 1f9dd53b4d
commit ac5a4589ea
4 changed files with 42 additions and 0 deletions

View File

@@ -161,6 +161,8 @@ namespace OpenRA.Traits
Activity MoveTo(CPos cell, Actor ignoredActor);
Activity MoveWithinRange(Target target, WRange range);
Activity MoveFollow(Actor self, Target target, WRange range);
Activity MoveIntoWorld(Actor self, CPos cell);
Activity VisualMove(Actor self, WPos fromPos, WPos toPos);
CPos NearestMoveableCell(CPos target);
bool IsMoving { get; set; }
}