// Copyright Epic Games, Inc. All Rights Reserved. // This file is automatically generated. Changes to this file may be overwritten. namespace Epic.OnlineServices.Lobby { /// /// Input parameters for the function. /// public struct CreateLobbySearchOptions { /// /// Maximum number of results allowed from the search /// public uint MaxResults { get; set; } } [System.Runtime.InteropServices.StructLayout(System.Runtime.InteropServices.LayoutKind.Sequential, Pack = 8)] internal struct CreateLobbySearchOptionsInternal : ISettable, System.IDisposable { private int m_ApiVersion; private uint m_MaxResults; public uint MaxResults { set { m_MaxResults = value; } } public void Set(ref CreateLobbySearchOptions other) { m_ApiVersion = LobbyInterface.CreatelobbysearchApiLatest; MaxResults = other.MaxResults; } public void Set(ref CreateLobbySearchOptions? other) { if (other.HasValue) { m_ApiVersion = LobbyInterface.CreatelobbysearchApiLatest; MaxResults = other.Value.MaxResults; } } public void Dispose() { } } }