summaryrefslogtreecommitdiff
path: root/Assembly_Firstpass/Steamworks/GSStatsStored_t.cs
blob: 3926e4601cb6280ddc85d38edbca82ca4d63e8c9 (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 = 4)]
[CallbackIdentity(1801)]
public struct GSStatsStored_t
{
	public const int k_iCallback = 1801;

	public EResult m_eResult;

	public CSteamID m_steamIDUser;
}