Exemplo n.º 1
0
        public IPlayersHand split_hand()
        {
            var split_hand = new PlayersHand(this.wager, this._blackjack_table, HandLetters.B.ToString());
            var card_to_move = this._cards[1];
            split_hand.add(card_to_move);
            this.remove(card_to_move);

            return split_hand;
        }
Exemplo n.º 2
0
        public IPlayersHand split_hand()
        {
            var split_hand   = new PlayersHand(this.wager, this._blackjack_table, HandLetters.B.ToString());
            var card_to_move = this._cards[1];

            split_hand.add(card_to_move);
            this.remove(card_to_move);

            return(split_hand);
        }