public Player(string _name, Func <int> _inputMethod) { Name = _name; InputMethod = _inputMethod; Hand = new Hand(); }
public void ShuffleCards(Hand hand) { hand.Cards = Utils.ShuffleList <Card>(hand.Cards); }