Files
tugo/agents/base.py
T
2023-05-30 17:16:48 +08:00

11 lines
173 B
Python

class Agent:
def __init__(self):
pass
def select_move(self, game_state):
raise NotImplementedError()
def diagnostics(self):
return {}