all repos — Legends-RPG @ c34273ecf367cfde3fa95f9181f1e4ca13095502

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