From bd982aa0d93c1759b5501bf23ef90a8a5cdf8275 Mon Sep 17 00:00:00 2001 From: Ki Rill Date: Sun, 8 Mar 2020 20:12:37 +0600 Subject: [PATCH] Update app.d --- lesson#13/ticTacToe/source/app.d | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lesson#13/ticTacToe/source/app.d b/lesson#13/ticTacToe/source/app.d index 0df9938..14b32aa 100644 --- a/lesson#13/ticTacToe/source/app.d +++ b/lesson#13/ticTacToe/source/app.d @@ -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