diff options
Diffstat (limited to 'Assembly_Firstpass/Steamworks/RemoteStoragePublishFileProgress_t.cs')
-rw-r--r-- | Assembly_Firstpass/Steamworks/RemoteStoragePublishFileProgress_t.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Assembly_Firstpass/Steamworks/RemoteStoragePublishFileProgress_t.cs b/Assembly_Firstpass/Steamworks/RemoteStoragePublishFileProgress_t.cs new file mode 100644 index 0000000..8c33dfb --- /dev/null +++ b/Assembly_Firstpass/Steamworks/RemoteStoragePublishFileProgress_t.cs @@ -0,0 +1,15 @@ +using System.Runtime.InteropServices; + +namespace Steamworks; + +[StructLayout(LayoutKind.Sequential, Pack = 8)] +[CallbackIdentity(1329)] +public struct RemoteStoragePublishFileProgress_t +{ + public const int k_iCallback = 1329; + + public double m_dPercentFile; + + [MarshalAs(UnmanagedType.I1)] + public bool m_bPreview; +} |