Files
Gwendolyn/funcs/games/games.py
2021-03-31 00:38:51 +02:00

20 lines
540 B
Python

from .invest import Invest
from .trivia import Trivia
from .blackjack import Blackjack
from .connectFour import connectFour
from .gameLoops import GameLoops
from .hangman import Hangman
from .hex import HexGame
class Games():
def __init__(self, bot):
self.bot = bot
self.invest = Invest(bot)
self.trivia = Trivia(bot)
self.blackjack = Blackjack(bot)
self.connectFour = connectFour(bot)
self.gameLoops = GameLoops(bot)
self.hangman = Hangman(bot)
self.hex = HexGame(bot)