This commit is contained in:
niko
2026-04-11 22:19:20 +02:00
parent 45b857ff11
commit 8fc35183db
17034 changed files with 2863552 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
using System;
using Cpp2IlInjected;
namespace SA.Foundation.Events
{
// Token: 0x02000044 RID: 68
[Token(Token = "0x200003A")]
public interface SA_iSafeEvent<T, T1>
{
// Token: 0x0600012E RID: 302
[Token(Token = "0x600010D")]
[Address(Slot = "0")]
void AddSafeListener(object callbackTarget, Action<T, T1> listner);
// Token: 0x0600012F RID: 303
[Token(Token = "0x600010E")]
[Address(Slot = "1")]
void RemoveListener(Action<T, T1> listner);
}
}