summaryrefslogtreecommitdiff
path: root/Assembly_Firstpass/Steamworks/GSClientKick_t.cs
blob: c6a39641e78e4c3941398aeb02de2a40ccadd5e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System.Runtime.InteropServices;

namespace Steamworks;

[StructLayout(LayoutKind.Sequential, Pack = 4)]
[CallbackIdentity(203)]
public struct GSClientKick_t
{
	public const int k_iCallback = 203;

	public CSteamID m_SteamID;

	public EDenyReason m_eDenyReason;
}