Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- if(triesRemaining > 0) {
- Character userInput = event.getDisplayLabel();
- if(isValidChar(userInput)) {
- if(!isAlreadyGuessed(userInput)) {
- if(!isInSecretWord(userInput)) {
- triesRemaining--;
- }
- charactersUsed.add(userInput);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment