Files
2026-06-04 11:42:34 +02:00

25 lines
612 B
C#

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
}
}