Beispiel #1
0
    IEnumerator TimeDown(SQTimeOutDeleteCall call, float time)
    {
        yield return(new WaitForSeconds(time));

        call();
    }
Beispiel #2
0
 public void AddDelay(SQTimeOutDeleteCall call, float timeOut)
 {
     StartCoroutine(TimeDown(call, timeOut));
 }