Set some stuff up for werewolf 🐺

This commit is contained in:
NikolajDanger
2020-12-03 15:48:02 +01:00
parent 01553d5ffc
commit d03ae74937
5 changed files with 160 additions and 22 deletions

View File

@@ -6,6 +6,7 @@ from .gameLoops import GameLoops
from .monopoly import Monopoly
from .hangman import Hangman
from .hex import HexGame
from .werewolf import Werewolf
class Games():
def __init__(self, bot):
@@ -19,3 +20,4 @@ class Games():
bot.monopoly = Monopoly(bot)
bot.hangman = Hangman(bot)
bot.hex = HexGame(bot)
bot.werewolf = Werewolf(bot)