You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.1 KiB

// Copyright Epic Games, Inc. All Rights Reserved.
// This file is automatically generated. Changes to this file may be overwritten.
namespace Epic.OnlineServices.Sessions
{
public class UpdateSessionOptions
{
/// <summary>
/// Builder handle
/// </summary>
public SessionModification SessionModificationHandle { get; set; }
}
[System.Runtime.InteropServices.StructLayout(System.Runtime.InteropServices.LayoutKind.Sequential, Pack = 8)]
internal struct UpdateSessionOptionsInternal : ISettable, System.IDisposable
{
private int m_ApiVersion;
private System.IntPtr m_SessionModificationHandle;
public SessionModification SessionModificationHandle
{
set
{
Helper.TryMarshalSet(ref m_SessionModificationHandle, value);
}
}
public void Set(UpdateSessionOptions other)
{
if (other != null)
{
m_ApiVersion = SessionsInterface.UpdatesessionApiLatest;
SessionModificationHandle = other.SessionModificationHandle;
}
}
public void Set(object other)
{
Set(other as UpdateSessionOptions);
}
public void Dispose()
{
Helper.TryMarshalDispose(ref m_SessionModificationHandle);
}
}
}