Update main.d

This commit is contained in:
Ki Rill 2019-12-21 14:41:08 +06:00 committed by GitHub
parent fa8e0b60d7
commit 41dbac32de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -16,15 +16,15 @@ void main() {
// generate a random number (index) // generate a random number (index)
int index = uniform(0, 10); int index = uniform(0, 10);
string word = dictionary[index]; // copy the selected word string word = dictionary[index]; // copy the selected word
char[] displayWord; // we print it to the screen char[] displayWord; // we print it to the screen
for(int i = 0; i < word.length; i++) { // initialize displayWord by '_' to depict how many letter the selected word has for(int i = 0; i < word.length; i++) { // initialize displayWord by '_' to depict how many letter the selected word has
displayWord ~= '_'; displayWord ~= '_';
} }
// calling main menu function // calling main menu function
bool gameOver = mainMenu(); // mainMenu return false if player decides to play, true if player exits bool gameOver = mainMenu(); // mainMenu return false if player decides to play, true if player exits
char guess; // a variable to store player's guess char guess; // a variable to store player's guess
int lettersGuessed = 0; // we need to know how many letters were guessed int lettersGuessed = 0; // we need to know how many letters were guessed
while(!gameOver) { while(!gameOver) {
printWord(displayWord); printWord(displayWord);
@ -40,7 +40,7 @@ void main() {
} }
} }
if(temp == lettersGuessed) { // if player didn't guess correctly, lives = lives - 1 if(temp == lettersGuessed) { // if player didn't guess correctly, lives = lives - 1
lives--; lives--;
} }