🧹 Smaal clean-up with connect four

Removing the unused function in gameLoops and changing the class name to
start with a capital letter
This commit is contained in:
NikolajDanger
2021-04-04 15:38:26 +02:00
parent e4a44fffef
commit 5647cea552
3 changed files with 3 additions and 72 deletions

View File

@ -1,7 +1,7 @@
from .invest import Invest
from .trivia import Trivia
from .blackjack import Blackjack
from .connectFour import connectFour
from .connectFour import ConnectFour
from .gameLoops import GameLoops
from .hangman import Hangman
from .hex import HexGame
@ -13,7 +13,7 @@ class Games():
self.invest = Invest(bot)
self.trivia = Trivia(bot)
self.blackjack = Blackjack(bot)
self.connectFour = connectFour(bot)
self.connectFour = ConnectFour(bot)
self.gameLoops = GameLoops(bot)
self.hangman = Hangman(bot)
self.hex = HexGame(bot)