1
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
__all__ = [
|
||||
'Agent',
|
||||
]
|
||||
|
||||
|
||||
# tag::agent[]
|
||||
class Agent:
|
||||
def __init__(self):
|
||||
pass
|
||||
|
||||
def select_move(self, game_state):
|
||||
raise NotImplementedError()
|
||||
# end::agent[]
|
||||
|
||||
def diagnostics(self):
|
||||
return {}
|
||||
Reference in New Issue
Block a user