Example #1
0
 public Shell(string culture = null)
 {
     this.culture = culture;
     random       = new RandomValues();
     Console.Write("Loading");
     graph = Progress.Wait <WordGraph>(GetGraph);
     board = new Board();
 }
Example #2
0
 public Game(RandomValues random, WordGraph graph)
 {
     this.random = random;
     this.graph  = graph;
 }
Example #3
0
 public CellFinder(RandomValues random, ValidWord valid, Direction direction)
 {
     this.random    = random;
     this.valid     = valid;
     this.direction = direction;
 }