예제 #1
0
    public bool WordTyped()
    {
        bool wordTyped = (typeIndex >= romaji.Length);         // Checks if the whole word has been typed

        if (wordTyped)
        {
            display.RemoveWord();              // Remove the whole object on screen
        }
        else
        {
            display.Highlighter();
        }
        return(wordTyped);
    }