public StringQueue(int i, Vocabulary vocab) : base(i) { this.vocab = vocab; }
public Plugin() { vocab = new Vocabulary(); }
public WordListParser(string path, Vocabulary vocab) { this.path = path; this.vocab = vocab; }