Move the IMove interface to Mods.Common.

This commit is contained in:
Paul Chote
2017-09-06 22:54:50 +01:00
committed by Oliver Brakmann
parent 0f6dda3f5f
commit e3212d1e64
6 changed files with 23 additions and 18 deletions

View File

@@ -294,4 +294,23 @@ namespace OpenRA.Mods.Common.Traits
{
IEnumerable<object> ActorPreviewInits(ActorInfo ai, ActorPreviewType type);
}
public interface IMoveInfo : ITraitInfoInterface { }
public interface IMove
{
Activity MoveTo(CPos cell, int nearEnough);
Activity MoveTo(CPos cell, Actor ignoreActor);
Activity MoveWithinRange(Target target, WDist range);
Activity MoveWithinRange(Target target, WDist minRange, WDist maxRange);
Activity MoveFollow(Actor self, Target target, WDist minRange, WDist maxRange);
Activity MoveIntoWorld(Actor self, CPos cell, SubCell subCell = SubCell.Any);
Activity MoveToTarget(Actor self, Target target);
Activity MoveIntoTarget(Actor self, Target target);
Activity VisualMove(Actor self, WPos fromPos, WPos toPos);
CPos NearestMoveableCell(CPos target);
bool IsMoving { get; set; }
bool IsMovingVertically { get; set; }
bool CanEnterTargetNow(Actor self, Target target);
}
}