Files
Gwendolyn/gwendolyn_old/funcs/star_wars_funcs/star_wars.py
2024-10-28 13:05:06 +01:00

11 lines
340 B
Python

from .star_wars_char import StarWarsChar
from .star_wars_roll import StarWarsRoll
from .star_wars_destiny import StarWarsDestiny
class StarWars():
def __init__(self, bot):
self.bot = bot
self.character = StarWarsChar(self.bot)
self.roll = StarWarsRoll(self.bot)
self.destiny = StarWarsDestiny(self.bot)