__doc__ = "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