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,42 @@
using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace RecRoom
{
// Token: 0x02000025 RID: 37
[Token(Token = "0x2000025")]
[StructLayout(3)]
public sealed class ActionEvent<T, U> : ListEvent<Action<T, U>>, IEventReg<T, U>
{
// Token: 0x06000095 RID: 149 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000095")]
[Address(RVA = "0x23E26B0", Offset = "0x23E10B0", VA = "0x1823E26B0")]
public ActionEvent(int capacity = 32, bool useTryCatch = false)
{
}
// Token: 0x06000096 RID: 150 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000096")]
[Address(RVA = "0x23E3A30", Offset = "0x23E2430", VA = "0x1823E3A30")]
public void Invoke(T t, U u)
{
}
// Token: 0x06000097 RID: 151 RVA: 0x00002052 File Offset: 0x00000252
[Token(Token = "0x6000097")]
[Address(RVA = "0x23E26E0", Offset = "0x23E10E0", VA = "0x1823E26E0")]
public static ActionEvent<T, U>operator +(ActionEvent<T, U> actionEvent, Action<T, U> action)
{
return null;
}
// Token: 0x06000098 RID: 152 RVA: 0x00002052 File Offset: 0x00000252
[Token(Token = "0x6000098")]
[Address(RVA = "0x23E2780", Offset = "0x23E1180", VA = "0x1823E2780")]
public static ActionEvent<T, U>operator -(ActionEvent<T, U> actionEvent, Action<T, U> action)
{
return null;
}
}
}