From 1a205a47e9605c1d73c6d2bf959c08c2ce9babc7 Mon Sep 17 00:00:00 2001 From: Requiem493 Date: Thu, 23 Apr 2026 17:57:25 -0400 Subject: [PATCH] fixed misassignment of colors in tictactoe --- .../__pycache__/tictactoe.cpython-312.pyc | Bin 6044 -> 6064 bytes tictactoe/runner.py | 2 ++ 2 files changed, 2 insertions(+) diff --git a/tictactoe/__pycache__/tictactoe.cpython-312.pyc b/tictactoe/__pycache__/tictactoe.cpython-312.pyc index f1c2d2fef43833c5bff74808dadea177ef4ab2a5..9adf9f0954bcad67b37827fc1a45703b30cde537 100644 GIT binary patch delta 91 zcmbQEzd@h(G%qg~0}$-$eUKS!VUG%qg~0}$MwRgsauk@pLuwwZoLer~FMR$^ved~sq%Vv>G9Wl2VUUVK1N ZepYI7iGE3Da!F!xNq(ySW(TGMQ2=Mw83_OY diff --git a/tictactoe/runner.py b/tictactoe/runner.py index 01437bf..f993376 100644 --- a/tictactoe/runner.py +++ b/tictactoe/runner.py @@ -13,6 +13,8 @@ # Colors red = (255, 0, 0) blue = (0, 0, 255) +black = (0, 0, 0) +white = (255, 255, 255) # Create the game window screen = pygame.display.set_mode(size)