Example #1
0
    public bool WordTyped()
    {
        bool wordTyped = (typeIndex >= word.Length);

        if (wordTyped)
        {
            display.RemoveWord();
        }
        return(wordTyped);
    }
Example #2
0
    public bool IsFinished()
    {
        if (index >= word.Length - 1)
        {
            display.RemoveWord();
        }

        return(index >= word.Length - 1);
        //enter kebaca
    }
Example #3
0
    public bool WordComplete()
    {
        bool wordDone = (index >= word.Length);

        if (wordDone)
        {
            ScoreManager.UpdateClearedWords(this);
            display.RemoveWord();
        }


        return(wordDone);
    }