Files
Gwendolyn/funcs/swfuncs/__init__.py
Nikolaj Danger cb2df5e87a 🐛
2020-08-03 17:55:16 +02:00

7 lines
220 B
Python

"""Functions related to the Star Wars TTRPG."""
__all__ = ["parseChar", "parseRoll", "critRoll", "parseDestiny"]
from .swchar import parseChar
from .swroll import parseRoll, critRoll
from .swdestiny import parseDestiny