Exemplo n.º 1
0
 public static void DrawCardIfHandIsEmpty(Player player)
 {
     if (player.HandIsEmpty())
     {
         player.DrawCard(deck);
     }
 }