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
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.AntiCheatCommon
|
|
{
|
|
public class SetGameSessionIdOptions
|
|
{
|
|
/// <summary>
|
|
/// Game session identifier
|
|
/// </summary>
|
|
public string GameSessionId { get; set; }
|
|
}
|
|
|
|
[System.Runtime.InteropServices.StructLayout(System.Runtime.InteropServices.LayoutKind.Sequential, Pack = 8)]
|
|
internal struct SetGameSessionIdOptionsInternal : ISettable, System.IDisposable
|
|
{
|
|
private int m_ApiVersion;
|
|
private System.IntPtr m_GameSessionId;
|
|
|
|
public string GameSessionId
|
|
{
|
|
set
|
|
{
|
|
Helper.TryMarshalSet(ref m_GameSessionId, value);
|
|
}
|
|
}
|
|
|
|
public void Set(SetGameSessionIdOptions other)
|
|
{
|
|
if (other != null)
|
|
{
|
|
m_ApiVersion = AntiCheatCommonInterface.SetgamesessionidApiLatest;
|
|
GameSessionId = other.GameSessionId;
|
|
}
|
|
}
|
|
|
|
public void Set(object other)
|
|
{
|
|
Set(other as SetGameSessionIdOptions);
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
Helper.TryMarshalDispose(ref m_GameSessionId);
|
|
}
|
|
}
|
|
}
|