From 76a22c3c9b7873d4c9ff43a77e7ac1e0efd42fbc Mon Sep 17 00:00:00 2001 From: GarinFraser Date: Tue, 2 Dec 2025 06:50:13 -0500 Subject: [PATCH] changed colors of tictactoe board from white and black to red and blue. Changed one comment to explain code beneath. --- tictactoe/runner.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tictactoe/runner.py b/tictactoe/runner.py index 2449ef3..0819ecd 100644 --- a/tictactoe/runner.py +++ b/tictactoe/runner.py @@ -6,12 +6,12 @@ # Initialize pygame pygame.init() -#Define Colors +#Define Window Size size = width, height = 600, 400 # Colors -black = (0, 0, 0) -white = (255, 255, 255) +red = (255, 0, 0) +blue = (0, 0, 255) # Create the game window screen = pygame.display.set_mode(size)