summaryrefslogtreecommitdiff
path: root/Assembly_Firstpass/Steamworks/GetAuthSessionTicketResponse_t.cs
blob: c4fbc1051ea8f341c67323f531d1254e5fbf8dfc (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 = 8)]
[CallbackIdentity(163)]
public struct GetAuthSessionTicketResponse_t
{
	public const int k_iCallback = 163;

	public HAuthTicket m_hAuthTicket;

	public EResult m_eResult;
}