Ejemplo n.º 1
0
        public PlayerAction GetPlayerAction(PlayerPokerState state)
        {
            if (!IsGoodStartingCards(state.PlayerCards))
            {
                return(new FoldAction());
            }


            return(new AllInAction());
        }
Ejemplo n.º 2
0
 public PlayerAction GetPlayerAction(PlayerPokerState state)
 {
     return(new AllInAction());
 }