all repos — Legends-RPG @ 05d9e3d3d1f5fd253dc04a612313eac3b634def0

A fantasy mini-RPG built with Python and Pygame.

The_Stolen_Crown.py (view raw)

 1#!/usr/bin/env python
 2__author__ = 'justinarmstrong'
 3
 4"""This is a fantasy RPG game about a warrior whose
 5quest is to recover a magic crown"""
 6
 7import sys
 8import pygame as pg
 9from data import setup
10from data.main import main
11
12if __name__ =='__main__':
13    setup.GAME
14    main()
15    pg.quit()
16    sys.exit()