Пример #1
0
 public Simulation()
 {
     customer    = new Customer();
     sodaMachine = new SodaMachine();
 }
Пример #2
0
 // CONSTRUCTOR (SPAWNER)
 public Simulation()
 {
     customer     = new Customer();
     sodaMachine  = new SodaMachine();
     addMoreMoney = true;
 }
Пример #3
0
        //Properties

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