1__author__ = 'justinarmstrong'
2
3import pygame as pg
4
5"""Constants used throughout the game"""
6
7##GAME STATES"""
8
9TOWN = 'town'
10MAIN_MENU = 'main menu'
11
12##Colors
13
14BLACK = (0, 0, 0)
15NEAR_BLACK = (1, 0, 0)
16WHITE = (255, 255, 255)
17
18
19
20