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: 0x02000045 RID: 69
[Token(Token = "0x200003B")]
public interface SA_iSafeEvent
{
// Token: 0x06000130 RID: 304
[Token(Token = "0x600010F")]
[Address(Slot = "0")]
void AddSafeListener(object callbackTarget, Action listner);
// Token: 0x06000131 RID: 305
[Token(Token = "0x6000110")]
[Address(Slot = "1")]
void RemoveListener(Action listner);
}
}