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
+23
View File
@@ -0,0 +1,23 @@
using System;
using Cpp2IlInjected;
namespace Steamworks
{
// Token: 0x020017E4 RID: 6116
[Token(Token = "0x20017E4")]
public enum EServerMode
{
// Token: 0x04006121 RID: 24865
[Token(Token = "0x4006121")]
eServerModeInvalid,
// Token: 0x04006122 RID: 24866
[Token(Token = "0x4006122")]
eServerModeNoAuthentication,
// Token: 0x04006123 RID: 24867
[Token(Token = "0x4006123")]
eServerModeAuthentication,
// Token: 0x04006124 RID: 24868
[Token(Token = "0x4006124")]
eServerModeAuthenticationAndSecure
}
}