Exemplo n.º 1
0
        public void EndHand()
        {
            var awaitingWinner = PlayedCardsController.awaitingWinner;

            roundScores[awaitingWinner.GetPlayersSeat()].IncrementGot();
            handCount++;
            if (handCount > 13)
            {
                PlayedCardsController.EndRound(roundScores, bidWinningPlayer.GetPlayersSeat());
            }
            else
            {
                UIHand nextHand = new UIHand(awaitingWinner, trumpType, this);
                nextHand.StartHand();
            }
        }
Exemplo n.º 2
0
        public override void StartRound()
        {
            UIHand firstHand = new UIHand(this.bidWinningPlayer, this.trumpType, this);

            firstHand.StartHand();
        }