Files
2026-02-21 16:45:37 +08:00

17 lines
352 B
C#

using System;
namespace Steamworks
{
[Flags]
public enum ERemoteStoragePlatform
{
k_ERemoteStoragePlatformNone = 0,
k_ERemoteStoragePlatformWindows = 1,
k_ERemoteStoragePlatformOSX = 2,
k_ERemoteStoragePlatformPS3 = 4,
k_ERemoteStoragePlatformLinux = 8,
k_ERemoteStoragePlatformReserved2 = 0x10,
k_ERemoteStoragePlatformAll = -1
}
}