quest-engine 1.0.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
engine/__init__.py ADDED
@@ -0,0 +1,4 @@
1
+ """
2
+ Quest Engine - A generic RPG-style skill training framework.
3
+ Run with: python -m engine <skill_pack_name>
4
+ """
engine/__main__.py ADDED
@@ -0,0 +1,2 @@
1
+ from .main import main
2
+ main()