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(); } }
// called when the round has ended public override void Showdown(Game game) { primary.Showdown(game); secondary.Showdown(game); }