all repos — Legends-RPG @ 06000b5eb46fa12ffde316178a99cc020756b52f

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