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