This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 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
}
}