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

	public ulong m_ulSteamIDUser;

	public ulong m_ulSteamIDLobby;

	public ulong m_ulGameID;
}