예제 #1
0
 public void ApplyGuess(char guess)
 {
     CurrentMask = FindBestMaskFromGuess(guess);
 }
예제 #2
0
 public WordList(string dictionaryPath, int wordLength)
 {
     CurrentMask = new MaskGroup(
         new string('_', wordLength),
         ReadWordsOfSpecificLength(dictionaryPath, wordLength));
 }