Beispiel #1
0
 private void DrawHand(Player player)
 {
     for (int i = 0; i < Math.Min(5, stock.Count); i++)
     {
         player.TakeCard(stock.Deal());
     }
 }
Beispiel #2
0
 private void DrawHand(Player player)
 {
     for (int i = 0; i < Math.Min(5, stock.Count); i++)
     {
         player.TakeCard(stock.Deal());
     }
 }