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