예제 #1
0
    IEnumerator WaitTimeBeforeDoneServing(float timeToWait, System.Action action)
    {
        yield return(new WaitForSeconds(timeToWait));

        action();
        customerList.CallingNextCustomer();
        customerList.MoveCustomerUpInQueue(customerList.CurrentCustomer);
    }