// 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 class LobbySearchSetMaxResultsOptions { /// /// Maximum number of search results to return from the query /// public uint MaxResults { get; set; } } [System.Runtime.InteropServices.StructLayout(System.Runtime.InteropServices.LayoutKind.Sequential, Pack = 8)] internal struct LobbySearchSetMaxResultsOptionsInternal : ISettable, System.IDisposable { private int m_ApiVersion; private uint m_MaxResults; public uint MaxResults { set { m_MaxResults = value; } } public void Set(LobbySearchSetMaxResultsOptions other) { if (other != null) { m_ApiVersion = LobbySearch.LobbysearchSetmaxresultsApiLatest; MaxResults = other.MaxResults; } } public void Set(object other) { Set(other as LobbySearchSetMaxResultsOptions); } public void Dispose() { } } }