summaryrefslogtreecommitdiff
path: root/Assembly_Firstpass/Steamworks/ReservationNotificationCallback_t.cs
blob: 290b482d0eea3763c9cc042539c6918b8d39efcc (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(5303)]
public struct ReservationNotificationCallback_t
{
	public const int k_iCallback = 5303;

	public PartyBeaconID_t m_ulBeaconID;

	public CSteamID m_steamIDJoiner;
}