Exemplo n.º 1
0
    public char GetNextLetter()
    {
        char next = word[index];

        if (next == ' ' || next == '-' || next == '\'' || next == ',')
        {
            index++; // if its a space or dash
            display.RemoveLetter();
        }
        return(word[index]);
    }
Exemplo n.º 2
0
 public void TypeLetter()
 {
     typeIndex++;
     display.RemoveLetter();
 }