blob: 70dbd0336831494ea626d8b5c087941867097eb5 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
 | """ app.py - pääohjelma """
from board import Board, Level
from tui import Tui
from game import Game
from bots import BadBot
# pylint: disable = too-few-public-methods
class App:
    """ App - Luokka pääohjelmalle"""
    def __init__(self):
        self.board = Board(level=Level.BEGINNER)
        self.bot = BadBot()
        self.ui = Tui(self.bot)
        self.game = Game(self.board,self.ui)
    def run(self):
        """ käynnistää pelin """
        while self.game.next():
            pass
 |