GR.Gambling.Blackjack.SuperOptStrategy.GetBestAction C# (CSharp) Method

GetBestAction() public method

public GetBestAction ( Game game ) : ActionType
game Game
return ActionType
        public override ActionType GetBestAction(Game game)
        {
            List<ActionEv> actions = GetActions(game);

            return actions[0].Action;
        }