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'
11CASTLE = 'castle'
12
13##Colors
14
15BLACK = (0, 0, 0)
16NEAR_BLACK = (1, 0, 0)
17WHITE = (255, 255, 255)
18
19
20
21