/// <summary> /// Returns the command to move this ship in a direction. /// </summary> public Command Move(MapCell target, string comment) => Move(target.position, comment);
public List <Direction> GetAllDirectionsTo(MapCell cell) => GetAllDirectionsTo(cell.position);