示例#1
0
 //Replace
 public static void RepleaceFile()
 {
     WordBankFromFile.CreateBaseFile();
 }
示例#2
0
 //Read from the words file
 void ReadFromFile()
 {
     //will throw an exception if cant read file correctly
     WordGenerator.OverrideWordBank(WordBankFromFile.GetWordBank());
 }
示例#3
0
 //open the Text Editor to edit the words file
 public static void EditTxtFile()
 {
     WordBankFromFile.Edit();
 }