Source code for splendor.agents.generic.first_move

from splendor.template import Agent


[docs] class myAgent(Agent): def __init__(self, _id): super().__init__(_id)
[docs] def SelectAction(self, actions, game_state, game_rule): return actions[0]