18 lines
346 B
C#
18 lines
346 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace Steamworks
|
|
{
|
|
[StructLayout(LayoutKind.Sequential, Pack = 4)]
|
|
[CallbackIdentity(143)]
|
|
public struct ValidateAuthTicketResponse_t
|
|
{
|
|
public const int k_iCallback = 143;
|
|
|
|
public CSteamID m_SteamID;
|
|
|
|
public EAuthSessionResponse m_eAuthSessionResponse;
|
|
|
|
public CSteamID m_OwnerSteamID;
|
|
}
|
|
}
|