Reset() public method

public Reset ( ) : void
return void
示例#1
0
        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;
        }