Update app.d

This commit is contained in:
Ki Rill 2020-03-08 20:12:37 +06:00 committed by GitHub
parent 0a966c53ad
commit bd982aa0d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@ void main() {
}
bool playersMove = true; // tracking whose turn it is to make a move => x or o
bool draw = false; // if gameover and it is a draw
bool draw = false; // if gameover and it is a draw
bool gameOver = false; // if gameover and somebody has won => x or o
int empty_squares = 9;
@ -103,7 +103,7 @@ void main() {
}
}
if(draw) { // if the game is a draw
if(draw) { // if the game is a draw
DrawRectangleRec(Rectangle(0, 0, WIDTH, HEIGHT), Color(0, 0, 0, 160));
DrawText("It's a draw!", WIDTH/16, HEIGHT*2/5, 60, WHITE);
} else if(gameOver) { // if somebody has won