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