diff options
Diffstat (limited to 'Assembly_Firstpass/Steamworks/DurationControl_t.cs')
-rw-r--r-- | Assembly_Firstpass/Steamworks/DurationControl_t.cs | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/Assembly_Firstpass/Steamworks/DurationControl_t.cs b/Assembly_Firstpass/Steamworks/DurationControl_t.cs new file mode 100644 index 0000000..b2d6e62 --- /dev/null +++ b/Assembly_Firstpass/Steamworks/DurationControl_t.cs @@ -0,0 +1,27 @@ +using System.Runtime.InteropServices; + +namespace Steamworks; + +[StructLayout(LayoutKind.Sequential, Pack = 8)] +[CallbackIdentity(167)] +public struct DurationControl_t +{ + public const int k_iCallback = 167; + + public EResult m_eResult; + + public AppId_t m_appid; + + [MarshalAs(UnmanagedType.I1)] + public bool m_bApplicable; + + public int m_csecsLast5h; + + public EDurationControlProgress m_progress; + + public EDurationControlNotification m_notification; + + public int m_csecsToday; + + public int m_csecsRemaining; +} |