Steamworks.SteamRemoteStorage.SetSyncPlatforms C# (CSharp) Method

SetSyncPlatforms() public static method

public static SetSyncPlatforms ( string pchFile, ERemoteStoragePlatform eRemoteStoragePlatform ) : bool
pchFile string
eRemoteStoragePlatform ERemoteStoragePlatform
return bool
		public static bool SetSyncPlatforms(string pchFile, ERemoteStoragePlatform eRemoteStoragePlatform) {
			InteropHelp.TestIfAvailableClient();
			using (var pchFile2 = new InteropHelp.UTF8StringHandle(pchFile)) {
				return NativeMethods.ISteamRemoteStorage_SetSyncPlatforms(pchFile2, eRemoteStoragePlatform);
			}
		}