Пример #1
0
    public bool WordTyped()
    {
        bool wordTyped = (typeIndex >= word.Length);

        if (wordTyped)
        {
            //Update Score
            SymScore.scoreVal++;

            //Update Position of Ship

            //Remove the word from the screen
            display.removeWord();
        }
        return(wordTyped);
    }