Created
April 16, 2018 16:02
-
-
Save montyr75/349a2a354ef17306d7b9bdd99fcf871a to your computer and use it in GitHub Desktop.
Words and images for a Dart Hangman game.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const List<String> wordList = const ["PLENTY","ACHIEVE","CLASS","STARE","AFFECT","THICK","CARRIER","BILL","SAY","ARGUE","OFTEN","GROW","VOTING","SHUT","PUSH","FANTASY","PLAN","LAST","ATTACK","COIN","ONE","STEM","SCAN","ENHANCE","PILL","OPPOSED","FLAG","RACE","SPEED","BIAS","HERSELF","DOUGH","RELEASE","SUBJECT","BRICK","SURVIVE","LEADING","STAKE","NERVE","INTENSE","SUSPECT","WHEN","LIE","PLUNGE","HOLD","TONGUE","ROLLING","STAY","RESPECT","SAFELY"]; | |
const List<String> imageList = const [ | |
"https://i.imgur.com/kReMv94.png", | |
"https://i.imgur.com/UFP8RM4.png", | |
"https://i.imgur.com/9McnEXg.png", | |
"https://i.imgur.com/vNAW0pa.png", | |
"https://i.imgur.com/8UFWc9q.png", | |
"https://i.imgur.com/rHCgIvU.png", | |
"https://i.imgur.com/CtvIEMS.png", | |
"https://i.imgur.com/Z2mPdX0.png" | |
]; | |
const String winImage = "https://i.imgur.com/QYKuNwB.png"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment