GR.Gambling.Blackjack.OptStrategy.Showdown C# (CSharp) Method

Showdown() public method

public Showdown ( Game game ) : void
game Game
return void
        public override void Showdown(Game game)
        {
            foreach (Card card in game.DealerHand)
            {
                card_counter.RemoveCard(card.PointValue);
            }

            foreach (Hand hand in game.PlayerHandSet)
            {
                if (hand.IsSplit()) continue;

                foreach (Card card in hand)
                {
                    card_counter.RemoveCard(card.PointValue);
                }
            }
        }