Files
Jan2021-Cpp2Il-Dump/RecRoom.Datastructures.Runtime/RecRoom/IEventReg.cs
T
2026-04-08 23:40:05 +02:00

23 lines
493 B
C#

using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace RecRoom
{
// Token: 0x02000022 RID: 34
[Token(Token = "0x2000022")]
[StructLayout(3)]
public interface IEventReg<T>
{
// Token: 0x0600008F RID: 143
[Token(Token = "0x600008F")]
[Address(Slot = "0")]
void Add(Action<T> action, bool dontTrackForDebugCleanup = false);
// Token: 0x06000090 RID: 144
[Token(Token = "0x6000090")]
[Address(Slot = "1")]
void Remove(Action<T> action);
}
}