Пример #1
0
 public Player(FrontCards topCards, FrontCards bottomCards, IEnumerable <Card> hand)
 {
     TopCards    = topCards;
     BottomCards = bottomCards;
     Hand        = new List <Card>(hand);
 }
Пример #2
0
 public Player()
 {
     TopCards    = new FrontCards();
     BottomCards = new FrontCards();
     Hand        = new List <Card>();
 }