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

	public EResult m_result;

	public ulong m_ulOrderID;

	public ulong m_ulTransID;
}