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)