18 lines
314 B
C#
18 lines
314 B
C#
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;
|
|
}
|
|
}
|