Exemple #1
0
 public IReadOnlyCollection <Location> RandomOrder()
 => randomOrder.ShuffleAndTake(minefield, (int)Parameter.MineCount);
Exemple #2
0
 public IReadOnlyCollection <Location> FisherYates()
 => fisherYates.ShuffleAndTake(minefield, (int)Parameter.MineCount);
Exemple #3
0
 public IReadOnlyCollection <Location> GloballyUniqueIdentifier()
 => globallyUniqueIdentifier.ShuffleAndTake(minefield, (int)Parameter.MineCount);