public double totalMoneyEarned; //There is a stand class so the code is open to extension //Constructor public Stand() { cupsBoughtToday = 0; myStore = new Store(); standInventory = new Inventory(); myLemonadeRecipe = new LemonadeRecipe(); }
//CONSTRUCTOR public Player() { recipe = new LemonadeRecipe(); inventory = new Inventory(); pitcher = 0; cupsToPitcher = 8; numberOfBuyers = 0; }
//Constructor public Game() { myRecipe = new LemonadeRecipe(); lemonadeStand = new Stand(); player1 = new Player(); store = new Store(); today = new Day(); }
// private Customer customer; // public int dailyAmountOfCustomers = 70; // constructor (SPAWNER) public Day() { Weather weather = new Weather(); LemonadeRecipe lemonadeRecipe = new LemonadeRecipe(); }