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

	public EResult m_eResult;

	public ulong m_ullSearchID;
}