public Word(string word, WordDisplay display) { this.word = word; currentTypedIndex = 0; // For displaying the word in game this.display = display; display.SetWordText(word); }