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

	public uint m_unAppID;

	public ulong m_ulOrderID;

	public byte m_bAuthorized;
}