Exemple #1
0
 public Player(string name)
 {
     this.name     = name;
     cashBox       = new CashBox();
     lemonadeStand = new LemonadeStand();
     daysPlayed    = 1;
 }
Exemple #2
0
 public Player()
 {
     inventory = new Inventory();
     cashbox   = new CashBox();
 }