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