summaryrefslogtreecommitdiff
path: root/Assembly_Firstpass/Steamworks/SubmitPlayerResultResultCallback_t.cs
blob: f089427a50d88f3c210002c668915b69129a24fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System.Runtime.InteropServices;

namespace Steamworks;

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

	public EResult m_eResult;

	public ulong ullUniqueGameID;

	public CSteamID steamIDPlayer;
}