Steamworks.SteamRemoteStorage.FileFetch C# (CSharp) Méthode

FileFetch() public static méthode

Indicate this file should be downloaded in the next sync

public static FileFetch ( string pchFile ) : bool
pchFile string
Résultat bool
		public static bool FileFetch(string pchFile) {
			InteropHelp.TestIfAvailableClient();
			using (var pchFile2 = new InteropHelp.UTF8StringHandle(pchFile)) {
				return NativeMethods.ISteamRemoteStorage_FileFetch(pchFile2);
			}
		}