summaryrefslogtreecommitdiff
path: root/Assembly_Firstpass/Steamworks/SearchForGameProgressCallback_t.cs
blob: 3ccdca8c731395aef7016ef9f2a92c0570a164bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System.Runtime.InteropServices;

namespace Steamworks;

[StructLayout(LayoutKind.Sequential, Pack = 8)]
[CallbackIdentity(5201)]
public struct SearchForGameProgressCallback_t
{
	public const int k_iCallback = 5201;

	public ulong m_ullSearchID;

	public EResult m_eResult;

	public CSteamID m_lobbyID;

	public CSteamID m_steamIDEndedSearch;

	public int m_nSecondsRemainingEstimate;

	public int m_cPlayersSearching;
}