public Player(FrontCards topCards, FrontCards bottomCards, IEnumerable <Card> hand) { TopCards = topCards; BottomCards = bottomCards; Hand = new List <Card>(hand); }
public Player() { TopCards = new FrontCards(); BottomCards = new FrontCards(); Hand = new List <Card>(); }