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)); }
public QRoutines WaitFor(QRoutines routine) { return(WaitForQRoutine(routine)); }