Exemplo n.º 1
0
 public void Tick()
 {
     if (_customer._buyCounter < _buyTime)
     {
         _customer._buyCounter += Time.deltaTime;
         _customerEvents.Transacting();
     }
     else
     {
         _customer._finishedBuying = true;
     }
 }