diff --git a/tictactoe/__pycache__/tictactoe.cpython-312.pyc b/tictactoe/__pycache__/tictactoe.cpython-312.pyc index f1c2d2f..9adf9f0 100644 Binary files a/tictactoe/__pycache__/tictactoe.cpython-312.pyc and b/tictactoe/__pycache__/tictactoe.cpython-312.pyc differ 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)