Esempio n. 1
0
        public bool Hit(Player a_player)
        {
            if (m_deck != null && a_player.CalcScore() < g_maxScore && !IsGameOver())
            {
                a_player.GetCard(m_deck);

                return(true);
            }
            return(false);
        }