blob: 1b7fedd7874c011023ec004539d7e900942caaec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
""" bots/bot.py - bottien kantaisä """
from tui.static import Action
class Bot():
""" Bot - perusluokka perittäväksi """
# pylint: disable = too-few-public-methods
def __init__(self):
self.hints = 0
def hint(self, matrix, x, y):
""" antaa vinkin. tässä tapauksessa ei mitään """
# pylint: disable = unused-argument
self.hints += 1
return Action.NOOP, x, y
|