This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
using System;
namespace Steamworks
{
// Token: 0x020008D7 RID: 2263
[Flags]
public enum DCEMLMHINPF
{
// Token: 0x04002FB6 RID: 12214
k_ERemoteStoragePlatformNone = 0,
// Token: 0x04002FB7 RID: 12215
k_ERemoteStoragePlatformWindows = 1,
// Token: 0x04002FB8 RID: 12216
k_ERemoteStoragePlatformOSX = 2,
// Token: 0x04002FB9 RID: 12217
k_ERemoteStoragePlatformPS3 = 4,
// Token: 0x04002FBA RID: 12218
k_ERemoteStoragePlatformLinux = 8,
// Token: 0x04002FBB RID: 12219
k_ERemoteStoragePlatformReserved2 = 16,
// Token: 0x04002FBC RID: 12220
k_ERemoteStoragePlatformAll = -1
}
}