16 lines
309 B
C#
16 lines
309 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace Steamworks
|
|
{
|
|
[StructLayout(LayoutKind.Sequential, Pack = 8)]
|
|
[CallbackIdentity(5303)]
|
|
public struct ReservationNotificationCallback_t
|
|
{
|
|
public const int k_iCallback = 5303;
|
|
|
|
public PartyBeaconID_t m_ulBeaconID;
|
|
|
|
public CSteamID m_steamIDJoiner;
|
|
}
|
|
}
|