This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
using System;
using Cpp2IlInjected;
namespace BestHTTP
{
// Token: 0x02001985 RID: 6533
[Token(Token = "0x2001985")]
public interface IProtocol
{
// Token: 0x1700182F RID: 6191
// (get) Token: 0x06009812 RID: 38930
[Token(Token = "0x1700182F")]
bool IsClosed
{
[Token(Token = "0x6009812")]
[Address(Slot = "0")]
get;
}
// Token: 0x06009813 RID: 38931
[Token(Token = "0x6009813")]
[Address(Slot = "1")]
void HandleEvents();
}
}