Steamworks.SteamRemoteStorage.GetQuota C# (CSharp) Method

GetQuota() public static method

configuration management

public static GetQuota ( ulong &pnTotalBytes, ulong &puAvailableBytes ) : bool
pnTotalBytes ulong
puAvailableBytes ulong
return bool
		public static bool GetQuota(out ulong pnTotalBytes, out ulong puAvailableBytes) {
			InteropHelp.TestIfAvailableClient();
			return NativeMethods.ISteamRemoteStorage_GetQuota(out pnTotalBytes, out puAvailableBytes);
		}