summaryrefslogtreecommitdiff
path: root/Assembly_Firstpass/Steamworks/GameLobbyJoinRequested_t.cs
blob: 643585eefa6a23eda4ed840f0af2e202447f3dff (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(333)]
public struct GameLobbyJoinRequested_t
{
	public const int k_iCallback = 333;

	public CSteamID m_steamIDLobby;

	public CSteamID m_steamIDFriend;
}