From 823877510422f6ce2952de5cc40edd0d62d813e4 Mon Sep 17 00:00:00 2001 From: Aineopintojen-harjoitustyo-Algoritmit-j Date: Wed, 17 Jan 2024 10:51:08 +0200 Subject: Adding BadBot for hinting. --- app.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'app.py') diff --git a/app.py b/app.py index d8ca622..7ef3876 100644 --- a/app.py +++ b/app.py @@ -2,14 +2,15 @@ from board.board import Board from tui.tui import Tui from game.game import Game -from bots.idiot import IdiotBot +#from bots.idiot import IdiotBot +from bots.bad import BadBot # pylint: disable = too-few-public-methods class App: """ App - Luokka pääohjelmalle""" def __init__(self): self.board = Board() - self.bot = IdiotBot() + self.bot = BadBot() self.ui = Tui(self.bot) self.game = Game(self.board,self.ui) -- cgit v1.2.3