This commit is contained in:
niko
2026-04-08 23:40:05 +02:00
parent d6894bcbc7
commit 18dc73f922
7750 changed files with 1795369 additions and 0 deletions
@@ -0,0 +1,21 @@
using System;
using System.Runtime.InteropServices;
using System.Threading.Tasks;
using Cpp2IlInjected;
namespace RecRoom.Async
{
// Token: 0x02000020 RID: 32
[Token(Token = "0x2000020")]
[StructLayout(3)]
public static class PromiseTaskBridge
{
// Token: 0x060000AC RID: 172 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x60000AC")]
[Address(RVA = "0x20474C0", Offset = "0x2045EC0", VA = "0x1820474C0")]
public static Task<TResult> AsTask<TResult>(this IPromise<TResult> promise)
{
return null;
}
}
}