Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

51 lines
1.6 KiB
C#

using System;
using System.Collections;
using Cpp2IlInjected;
using StansAssets.Foundation.Patterns;
using UnityEngine;
namespace StansAssets.Foundation.Async
{
// Token: 0x02000052 RID: 82
[Token(Token = "0x200003F")]
internal class GlobalCoroutine : MonoSingleton<GlobalCoroutine>
{
// Token: 0x06000129 RID: 297 RVA: 0x0000207E File Offset: 0x0000027E
[Token(Token = "0x60000E4")]
[Address(RVA = "0x111E630", Offset = "0x111D630", VA = "0x18111E630")]
public void StartInstruction(YieldInstruction instruction, Action action)
{
}
// Token: 0x0600012A RID: 298 RVA: 0x00002080 File Offset: 0x00000280
[Token(Token = "0x60000E5")]
[Address(RVA = "0x111E550", Offset = "0x111D550", VA = "0x18111E550")]
private IEnumerator RunActionAfterInstruction(YieldInstruction instruction, Action action)
{
return null;
}
// Token: 0x0600012B RID: 299 RVA: 0x0000207E File Offset: 0x0000027E
[Token(Token = "0x60000E6")]
[Address(RVA = "0x111E6C0", Offset = "0x111D6C0", VA = "0x18111E6C0")]
public void StartInstruction(CustomYieldInstruction instruction, Action action)
{
}
// Token: 0x0600012C RID: 300 RVA: 0x00002080 File Offset: 0x00000280
[Token(Token = "0x60000E7")]
[Address(RVA = "0x111E5C0", Offset = "0x111D5C0", VA = "0x18111E5C0")]
private IEnumerator RunActionAfterInstruction(CustomYieldInstruction instruction, Action action)
{
return null;
}
// Token: 0x0600012D RID: 301 RVA: 0x0000207E File Offset: 0x0000027E
[Token(Token = "0x60000E8")]
[Address(RVA = "0x111E750", Offset = "0x111D750", VA = "0x18111E750")]
public GlobalCoroutine()
{
}
}
}