trioskosmos commited on
Commit
9ae5bf0
·
verified ·
1 Parent(s): 9be2432

Upload ai/agents/agent_base.py with huggingface_hub

Browse files
Files changed (1) hide show
  1. ai/agents/agent_base.py +6 -0
ai/agents/agent_base.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ from engine.game.game_state import GameState
2
+
3
+
4
+ class Agent:
5
+ def choose_action(self, state: GameState, player_id: int) -> int:
6
+ raise NotImplementedError