Files
2026-03-04 10:03:45 +08:00

16 lines
275 B
C#

using System.Runtime.InteropServices;
namespace Steamworks
{
[StructLayout(LayoutKind.Sequential, Pack = 8)]
[CallbackIdentity(513)]
public struct LobbyCreated_t
{
public const int k_iCallback = 513;
public EResult m_eResult;
public ulong m_ulSteamIDLobby;
}
}