Files
Gwendolyn/funcs/games/gamesContainer.py
NikolajDanger 5647cea552 🧹 Smaal clean-up with connect four
Removing the unused function in gameLoops and changing the class name to
start with a capital letter
2021-04-04 15:38:26 +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)