You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
329 B

#Window
WIDTH = 800
LENGHT = 800
GRID_ROWS = 3
GRID_COLS = 3
CASE_SIZE = WIDTH // GRID_COLS
LINE_WIDTH = 15
# Circle
CIRCLE_RADIUS = CASE_SIZE // 4
CIRCLE_WIDTH = 15
# Cross
CROSS_WIDTH = 25
# Colors (RGB)
BACKGROUND_COLOR = (46, 98, 163)
LINE_COLOR = (255,205, 0)
PLAYER2_COLOR = (98,195,248)
PLAYER1_COLOR = (215, 0, 0)