I am making a typing game where the player has to type words that appear on the screen and has a limited time before the word disappears, but I cant figure out how to code so that my string of words appear one by one and float across the screen. If he misspells or can't type it fast enough a tally mark should appear on the screen too to indicate that he lost a point. Can anyone help? So far I only have my string of words.
1 2 | private String[] words = { "APPLE" , "OREOS" , "ODDFUTURE" , "MAGE" , "FROZEN" , "FIGGNEWTONS" , "MEWTWO" , "PIKACHU" , "TOYMACHINE" , "BANANA" }; |