Exemplo n.º 1
0
 public void ApplyGuess(char guess)
 {
     CurrentMask = FindBestMaskFromGuess(guess);
 }
Exemplo n.º 2
0
 public WordList(string dictionaryPath, int wordLength)
 {
     CurrentMask = new MaskGroup(
         new string('_', wordLength),
         ReadWordsOfSpecificLength(dictionaryPath, wordLength));
 }