コード例 #1
0
 public Coroutine Install(Utility.ReferenceCountedCoroutine.Callback callback, object tag, object defaultYieldInstruction, bool skipFirst)
 {
     this.Retain();
     return(this.script.StartCoroutine(new Utility.ReferenceCountedCoroutine(this, callback, defaultYieldInstruction, tag, skipFirst)));
 }
コード例 #2
0
 // Token: 0x0600180C RID: 6156 RVA: 0x0005AA4C File Offset: 0x00058C4C
 private ReferenceCountedCoroutine(Utility.ReferenceCountedCoroutine.Runner runner, Utility.ReferenceCountedCoroutine.Callback callback, object yieldInstruction, object tag, bool skipOnce)
 {
     this.runner           = runner;
     this.callback         = callback;
     this.yieldInstruction = yieldInstruction;
     this.tag      = tag;
     this.skipOnce = skipOnce;
 }