Ejemplo n.º 1
0
 public static void AddAllCards(HashSet <Card> cardSet, ICardPicker matchingCards)
 {
     foreach (Card card in matchingCards.GetNeededCards())
     {
         cardSet.Add(card);
     }
 }
Ejemplo n.º 2
0
 private static void AddCards(List <Card> cardSet, ICardPicker matchingCards)
 {
     foreach (Card card in matchingCards.GetNeededCards())
     {
         cardSet.Add(card);
     }
 }
Ejemplo n.º 3
0
 public static void AddAllCards(HashSet<Card> cardSet, ICardPicker matchingCards)
 {
     foreach (Card card in matchingCards.GetNeededCards())
     {
         cardSet.Add(card);
     }
 }