summaryrefslogtreecommitdiff
path: root/Assembly_Firstpass/Steamworks/GSReputation_t.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Assembly_Firstpass/Steamworks/GSReputation_t.cs')
-rw-r--r--Assembly_Firstpass/Steamworks/GSReputation_t.cs25
1 files changed, 25 insertions, 0 deletions
diff --git a/Assembly_Firstpass/Steamworks/GSReputation_t.cs b/Assembly_Firstpass/Steamworks/GSReputation_t.cs
new file mode 100644
index 0000000..44d14cc
--- /dev/null
+++ b/Assembly_Firstpass/Steamworks/GSReputation_t.cs
@@ -0,0 +1,25 @@
+using System.Runtime.InteropServices;
+
+namespace Steamworks;
+
+[StructLayout(LayoutKind.Sequential, Pack = 8)]
+[CallbackIdentity(209)]
+public struct GSReputation_t
+{
+ public const int k_iCallback = 209;
+
+ public EResult m_eResult;
+
+ public uint m_unReputationScore;
+
+ [MarshalAs(UnmanagedType.I1)]
+ public bool m_bBanned;
+
+ public uint m_unBannedIP;
+
+ public ushort m_usBannedPort;
+
+ public ulong m_ulBannedGameID;
+
+ public uint m_unBanExpires;
+}