arctic-masher/globals.py

25 lines
518 B
Python
Raw Permalink Normal View History

import pygame
2023-05-19 12:20:28 +00:00
bg_color = pygame.Color('lightsalmon3')
bar_color = pygame.Color('white')
red = pygame.Color('brown4')
blue = pygame.Color('cadetblue3')
green = pygame.Color('green3')
2023-05-18 07:35:26 +00:00
grey = pygame.Color("gray26")
black = pygame.Color("black")
white = pygame.Color("white")
2023-05-19 01:31:56 +00:00
purple = pygame.Color("purple")
tile = 34
tileCountx = 50
2023-05-17 12:09:48 +00:00
tileCounty = 25
bottomBarHeight = 100
screen_width = tile * tileCountx
screen_height = tile * tileCounty + bottomBarHeight
# Game Entity Arrays
gameMap = []
players = {}
enemies = {}