Ejemplo n.º 1
0
 public QRoutines WaitForQRoutine(QRoutines routine)
 {
     if (routine == this)
     {
         Debug.LogWarning("QRoutine added to its own queue: QRoutine will be waiting for itself and will never resolve.");
     }
     return(WaitForRoutine(routine));
 }
Ejemplo n.º 2
0
 public QRoutines WaitFor(QRoutines routine)
 {
     return(WaitForQRoutine(routine));
 }