Removing more stuff relating to stuff still in development.

This commit is contained in:
NikolajDanger
2021-03-28 15:53:51 +02:00
parent 0ca0dcfb30
commit cdf2d7776e
14 changed files with 0 additions and 115 deletions

View File

@@ -3,10 +3,8 @@ from .trivia import Trivia
from .blackjack import Blackjack
from .fourInARow import FourInARow
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):
@@ -17,7 +15,5 @@ class Games():
bot.blackjack = Blackjack(bot)
bot.fourInARow = FourInARow(bot)
bot.gameLoops = GameLoops(bot)
bot.monopoly = Monopoly(bot)
bot.hangman = Hangman(bot)
bot.hex = HexGame(bot)
bot.werewolf = Werewolf(bot)