public Simulation() { customer = new Customer(); sodaMachine = new SodaMachine(); }
// CONSTRUCTOR (SPAWNER) public Simulation() { customer = new Customer(); sodaMachine = new SodaMachine(); addMoreMoney = true; }
//Properties //Constructor public Simulation() { simulatedCoin = new List <Coin>(); customer = new Customer(); sodaMachine = new SodaMachine(); }