public void StartRound() { dealer_hand.Reset(); player_handset.Reset(); // ask the player how much he wants to bet bet = agent.Bet(this); // collect initial wager from the player player_money -= bet; AddPartyPoints(bet); split_count = 0; }
// ask for a bet amount in the beginning of the round public override int Bet(Game game) { return(primary.Bet(game)); }