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 Cpp2IlInjected;
using RecRoom.Async;
namespace RecRoom.DataStructures
{
// Token: 0x02000031 RID: 49
[Token(Token = "0x2000031")]
[StructLayout(3)]
public static class SubscribableValueExt
{
// Token: 0x060000D1 RID: 209 RVA: 0x00002052 File Offset: 0x00000252
[Token(Token = "0x60000D1")]
[Address(RVA = "0x24160D0", Offset = "0x2414AD0", VA = "0x1824160D0")]
public static IPromise<T> GetValue<T>(this ISubscribableValue<T> subscribableValue, Action<T> callback)
{
return null;
}
}
}