summaryrefslogtreecommitdiff
path: root/Assembly_Firstpass/Steamworks/SteamInventoryFullUpdate_t.cs
blob: b6f2ee33dc60fac7236b1f9390414dccb57e3136 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System.Runtime.InteropServices;

namespace Steamworks;

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

	public SteamInventoryResult_t m_handle;
}