all repos — Legends-RPG @ fcf0f9b3eaa3beed201cf7b7e1b9b147f6c0ef7b

A fantasy mini-RPG built with Python and Pygame.

data/constants.py (view raw)

 1__author__ = 'justinarmstrong'
 2
 3"""Constants used throughout the game"""
 4
 5##GAME STATES"""
 6
 7TOWN = 'town'
 8MAIN_MENU = 'main menu'
 9
10##Colors
11
12BLACK = (0, 0, 0)
13WHITE = (255, 255, 255)
14