8 lines
186 B
Python
8 lines
186 B
Python
|
from Player import Player
|
||
|
|
||
|
class HumanPlayer(Player):
|
||
|
def __init__(self, token, name):
|
||
|
Player.__init__(self, token, name)
|
||
|
|
||
|
def choose_field(self, empty_fields):
|
||
|
return int(input())
|