diff --git a/pgfw/__init__.py b/pgfw/__init__.py index e69de29..5d8e8ca 100644 --- a/pgfw/__init__.py +++ b/pgfw/__init__.py @@ -0,0 +1,9 @@ +# __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 *