protected bool CanTarget(Tile tile) { int distance = BoardUtils.DistanceBetween(launcher.on, constraint, tile); return(distance <= maxRange && distance >= minRange); }
public bool CanSelect(Tile tile) { return(BoardUtils.DistanceBetween(launcher.on, constraint, tile) <= maxRange); }