Ejemplo n.º 1
0
 public bool Hit(Player a_player)
 {
     if (m_deck != null && a_player.CalcScore() < g_maxScore && !IsGameOver(a_player))
     {
         a_player.DealShownCardFromDeck(m_deck);
         return(true);
     }
     return(false);
 }