16 lines
299 B
C#
16 lines
299 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace Steamworks
|
|
{
|
|
[StructLayout(LayoutKind.Sequential, Pack = 8)]
|
|
[CallbackIdentity(5211)]
|
|
public struct RequestPlayersForGameProgressCallback_t
|
|
{
|
|
public const int k_iCallback = 5211;
|
|
|
|
public EResult m_eResult;
|
|
|
|
public ulong m_ullSearchID;
|
|
}
|
|
}
|