Files
tugo/agent/base.py
T
2023-05-23 15:52:09 +08:00

17 lines
231 B
Python

__all__ = [
'Agent',
]
# tag::agent[]
class Agent:
def __init__(self):
pass
def select_move(self, game_state):
raise NotImplementedError()
# end::agent[]
def diagnostics(self):
return {}