Пример #1
0
        private void Update()
        {
            // Reshuffle deck when low amount of cards
            if (dealer.LeftCardsInDeck() < 20)
            {
                dealer.ShuffleDeck();
            }

            UnitInit();
            Betting();
            InitCards();
            HitStand();
            HitStandDealer();
            CalcWinner();
            Console.ReadLine();
        }