Ejemplo n.º 1
0
 public Player(String myName, PlayerHand myHand)
 {
     Hand = myHand;
     Name = myName;
 }
Ejemplo n.º 2
0
 public HumanPlayer(PlayerHand myHand) : base(myHand)
 {
 }
Ejemplo n.º 3
0
 public Player(PlayerHand myHand)
 {
     Hand = myHand;
     Name = RandomName();
 }
Ejemplo n.º 4
0
 public MachinePlayer(PlayerHand myHand) : base(myHand)
 {
 }