예제 #1
0
 IEnumerator DoCall(ReplenishDelegate func, int[] index, int[] targetIndex)
 {
     func.Invoke(index, targetIndex);
     yield return(null);
 }
예제 #2
0
 public CoroutineQueue Then(ReplenishDelegate call, int[] index, int[] targetIndex)
 {
     waitQueue.Add(DoCall(call, index, targetIndex));
     return(this);
 }