all repos — Legends-RPG @ d888c95f9758b73561d9d31039006d9332f0329b

A fantasy mini-RPG built with Python and Pygame.

data/constants.py (view raw)

 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