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

namespace Steamworks;

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

	public CSteamID m_SteamID;

	public EAuthSessionResponse m_eAuthSessionResponse;

	public CSteamID m_OwnerSteamID;
}