Files
Gwendolyn/funcs/swfuncs/__init__.py
2020-08-03 17:51:35 +02:00

7 lines
219 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