Showdown() public abstract method

public abstract Showdown ( Game game ) : void
game Game
return void
Example #1
0
        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();
            }
        }
Example #2
0
 // called when the round has ended
 public override void Showdown(Game game)
 {
     primary.Showdown(game);
     secondary.Showdown(game);
 }