summaryrefslogtreecommitdiff
path: root/Assembly_Firstpass/Steamworks/ERemoteStoragePlatform.cs
blob: 0fdac0e9f9314185bf821296f684babc2dd54395 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;

namespace Steamworks;

[Flags]
public enum ERemoteStoragePlatform
{
	k_ERemoteStoragePlatformNone = 0,
	k_ERemoteStoragePlatformWindows = 1,
	k_ERemoteStoragePlatformOSX = 2,
	k_ERemoteStoragePlatformPS3 = 4,
	k_ERemoteStoragePlatformLinux = 8,
	k_ERemoteStoragePlatformSwitch = 0x10,
	k_ERemoteStoragePlatformAndroid = 0x20,
	k_ERemoteStoragePlatformIOS = 0x40,
	k_ERemoteStoragePlatformAll = -1
}