1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2025-02-25 14:15:04 +00:00
royalnet/rpgpack/tables/__init__.py

13 lines
335 B
Python
Raw Normal View History

2019-11-11 10:16:39 +01:00
# Imports go here!
2019-11-11 10:34:05 +01:00
from .dndactivecharacters import DndActiveCharacter
from .dndcharacters import DndCharacter
2019-11-11 10:16:39 +01:00
# Enter the tables of your Pack here!
available_tables = [
2019-11-11 10:34:05 +01:00
DndActiveCharacter,
DndCharacter,
2019-11-11 10:16:39 +01:00
]
# Don't change this, it should automatically generate __all__
__all__ = [table.__name__ for table in available_tables]