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

	public ulong m_nGameID;

	public EResult m_eResult;
}