public void PlayGame()
        {
            this.outputText = "";

            //Shuffle the cards
            GameCardsDeck.ShuffleCards();
            GameCardsDeck.ShuffleCards();

            //Deal the cards to the players
            DealCards();

            //Perform 20 rounds of the game loop
            for (int i = 0; i < 20; i++)
            {
                PlayRound();
            }

            //Determine who won
            DetermineWinner();
        }