Files
UltimateFishing/Assets/Plugins/Assembly-CSharp-firstpass/Steamworks/RemoteStorageAppSyncProgress_t.cs
2026-02-21 16:45:37 +08:00

24 lines
496 B
C#

using System.Runtime.InteropServices;
namespace Steamworks
{
[StructLayout(LayoutKind.Sequential, Pack = 8)]
[CallbackIdentity(1303)]
public struct RemoteStorageAppSyncProgress_t
{
public const int k_iCallback = 1303;
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 260)]
public string m_rgchCurrentFile;
public AppId_t m_nAppID;
public uint m_uBytesTransferredThisChunk;
public double m_dAppPercentComplete;
[MarshalAs(UnmanagedType.I1)]
public bool m_bUploading;
}
}