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