GR.Gambling.Blackjack.Game.EndRound C# (CSharp) Method

EndRound() public method

public EndRound ( ) : void
return void
        public void EndRound()
        {
            agent.Showdown(this);

            // shuffle if the condition met
            // 20% of cards used by the end of the hand
            if ((rules.Decks * 52 - shoe.Count) >= 84)
                ResetShoe();
        }