14 lines
287 B
Python
14 lines
287 B
Python
import pygame
|
|
|
|
bg_color = pygame.Color('cornsilk4')
|
|
red = pygame.Color('brown4')
|
|
blue = pygame.Color('cadetblue3')
|
|
green = pygame.Color('green3')
|
|
black = pygame.Color("black")
|
|
|
|
tile = 34
|
|
tileCountx = 50
|
|
tileCounty = 30
|
|
|
|
screen_width = tile * tileCountx
|
|
screen_height = tile * tileCounty |