""" app.py - pääohjelma """ from board.board import Board from tui.tui import Tui from game.game import Game # pylint: disable = too-few-public-methods class App: """ App - Luokka pääohjelmalle""" def __init__(self): self.board = Board() self.ui = Tui("just testing bot here") self.game = Game(self.board,self.ui) def run(self): """ käynnistää pelin """ while self.game.next(): pass