all repos — Legends-RPG @ 107d1b4f334c643b35bd44f6d8865a9e9a42e3b7

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.main import main
10
11if __name__ =='__main__':
12    main()
13    pg.quit()
14    sys.exit()