1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00
royalnet/rpgpack/stars/__init__.py

11 lines
286 B
Python
Raw Permalink Normal View History

2019-11-11 09:16:39 +00:00
# Imports go here!
2020-06-22 17:44:58 +00:00
from .api_dnd_character import ApiDndCharacterStar
2019-11-11 09:16:39 +00:00
# Enter the PageStars of your Pack here!
available_page_stars = [
2020-06-22 17:44:58 +00:00
ApiDndCharacterStar,
2019-11-11 09:16:39 +00:00
]
# Don't change this, it should automatically generate __all__
2020-03-14 00:57:29 +00:00
__all__ = [star.__name__ for star in available_page_stars]