Exemplo n.º 1
0
        public void DrawCardIntoCardset(CardSet cardSet)
        {
            var cards = Player.TakeCardsFromTopOfDeck(1, this);

            cards.ForEach(card => cardSet.Add(card, this));
        }