blob: eee3827756b426469ea3c045b35fee3fbace6037 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
using System.Runtime.InteropServices;
namespace Steamworks;
[StructLayout(LayoutKind.Sequential, Pack = 8)]
[CallbackIdentity(504)]
public struct LobbyEnter_t
{
public const int k_iCallback = 504;
public ulong m_ulSteamIDLobby;
public uint m_rgfChatPermissions;
[MarshalAs(UnmanagedType.I1)]
public bool m_bLocked;
public uint m_EChatRoomEnterResponse;
}
|