namespace AirBomber.MovementStrategy { public interface IMovableObject { ObjectParameters? ObjectPosition { get; } int Step { get; } bool CanMove(DirectionType Direction); void MoveObject(DirectionType Direction); } }