Example #1
0
        public void GameLoop()
        {
            while (true)
            {
                PlayerLoop();
                DealerLoop();

                foreach (Player player in ListOfPlayers)
                {
                    player.PlayStatusProp = true;
                    player.EmptyHand();
                    dealer.EmptyHand();
                }
                deck = new Deck(AmountOfDecks);
            }
        }