Ejemplo n.º 1
0
 public Player(Game game, Shoe shoe, int initialBalance)
 {
     Balance = initialBalance;
     Game = game;
     Shoe = shoe;
 }
Ejemplo n.º 2
0
 public Player(Game game, Shoe shoe) : this(game, shoe, -1)
 {
     Hands = new List<Hand>();
 }