blob: 495826582651d34dac9caa4bcbd1e8468f5cf45b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
using System.Runtime.InteropServices;
namespace Steamworks;
[StructLayout(LayoutKind.Sequential, Pack = 8)]
[CallbackIdentity(3404)]
public struct SubmitItemUpdateResult_t
{
public const int k_iCallback = 3404;
public EResult m_eResult;
[MarshalAs(UnmanagedType.I1)]
public bool m_bUserNeedsToAcceptWorkshopLegalAgreement;
public PublishedFileId_t m_nPublishedFileId;
}
|