summaryrefslogtreecommitdiff
path: root/Assembly_Firstpass/Steamworks/GSReputation_t.cs
blob: 44d14cc2b2a1eebaba5c85d1b178c5e622f991ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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;
}