arctic-masher/globals.py
2023-05-18 01:03:23 -07:00

24 lines
483 B
Python

import pygame
bg_color = pygame.Color('cornsilk4')
bar_color = pygame.Color('white')
red = pygame.Color('brown4')
blue = pygame.Color('cadetblue3')
green = pygame.Color('green3')
grey = pygame.Color("gray26")
black = pygame.Color("black")
white = pygame.Color("white")
tile = 34
tileCountx = 50
tileCounty = 25
bottomBarHeight = 100
screen_width = tile * tileCountx
screen_height = tile * tileCounty + bottomBarHeight
# Game Entity Arrays
gameMap = []
players = {}
enemies = {}