Files
niko 8fc35183db a
2026-04-11 22:19:20 +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 = "0x3810FA0", Offset = "0x380FDA0", VA = "0x183810FA0")]
public void StartInstruction(YieldInstruction instruction, Action action)
{
}
// Token: 0x0600012A RID: 298 RVA: 0x00002080 File Offset: 0x00000280
[Token(Token = "0x60000E5")]
[Address(RVA = "0x3810EC0", Offset = "0x380FCC0", VA = "0x183810EC0")]
private IEnumerator RunActionAfterInstruction(YieldInstruction instruction, Action action)
{
return null;
}
// Token: 0x0600012B RID: 299 RVA: 0x0000207E File Offset: 0x0000027E
[Token(Token = "0x60000E6")]
[Address(RVA = "0x3811030", Offset = "0x380FE30", VA = "0x183811030")]
public void StartInstruction(CustomYieldInstruction instruction, Action action)
{
}
// Token: 0x0600012C RID: 300 RVA: 0x00002080 File Offset: 0x00000280
[Token(Token = "0x60000E7")]
[Address(RVA = "0x3810F30", Offset = "0x380FD30", VA = "0x183810F30")]
private IEnumerator RunActionAfterInstruction(CustomYieldInstruction instruction, Action action)
{
return null;
}
// Token: 0x0600012D RID: 301 RVA: 0x0000207E File Offset: 0x0000027E
[Token(Token = "0x60000E8")]
[Address(RVA = "0x38110C0", Offset = "0x380FEC0", VA = "0x1838110C0")]
public GlobalCoroutine()
{
}
}
}