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