all repos — Legends-RPG @ 869eba15a64f6f9f6dc0700ae64b44848684b008

A fantasy mini-RPG built with Python and Pygame.

remove author string
Marco Andronaco andronacomarco@gmail.com
Tue, 23 Aug 2022 19:02:01 +0200
commit

869eba15a64f6f9f6dc0700ae64b44848684b008

parent

b93c81318903506cb3e9e20762b751b003612b8d

5 files changed, 5 insertions(+), 5 deletions(-)

jump to
M data/components/portal.pydata/components/portal.py

@@ -1,4 +1,4 @@

-__author__ = 'justinarmstrong' + import pygame as pg from .. import constants as c
M data/components/textbox.pydata/components/textbox.py

@@ -1,4 +1,4 @@

-__author__ = 'justinarmstrong' + import copy import pygame as pg from .. import setup, observer, tools
M data/setup.pydata/setup.py

@@ -1,4 +1,4 @@

-__author__ = 'justinarmstrong' + """ This module initializes the display and
M data/tools.pydata/tools.py

@@ -1,4 +1,4 @@

-__author__ = 'justinarmstrong' + import os, random import pygame as pg
M main.pymain.py

@@ -1,5 +1,5 @@

#!/usr/bin/env python -__author__ = 'justinarmstrong' + """This is a fantasy RPG game about a warrior whose quest is to recover a magic crown"""