예제 #1
0
    public Word(string word, WordDisplay display)
    {
        this.word         = word;
        currentTypedIndex = 0;

        // For displaying the word in game
        this.display = display;
        display.SetWordText(word);
    }