pgfw/pgfw/__init__.py

10 lines
325 B
Python

# __init__.py
#
# Import all classes from module files, making them accessible through `pgfw.CLASSNAME`
# Game imports most (all?) of PGFW, so those class become accessible as well (?)
from .Game import *
# Not sure why but pgfw.GameChild causes a module error without importing Animation directly
from .Animation import *