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.Metrics
|
|
{
|
|
/// <summary>
|
|
/// EndPlayerSession.
|
|
/// </summary>
|
|
public class EndPlayerSessionOptions
|
|
{
|
|
public EndPlayerSessionOptionsAccountId AccountId { get; set; }
|
|
}
|
|
|
|
[System.Runtime.InteropServices.StructLayout(System.Runtime.InteropServices.LayoutKind.Sequential, Pack = 8)]
|
|
internal struct EndPlayerSessionOptionsInternal : ISettable, System.IDisposable
|
|
{
|
|
private int m_ApiVersion;
|
|
private EndPlayerSessionOptionsAccountIdInternal m_AccountId;
|
|
|
|
public EndPlayerSessionOptionsAccountId AccountId
|
|
{
|
|
set
|
|
{
|
|
Helper.TryMarshalSet(ref m_AccountId, value);
|
|
}
|
|
}
|
|
|
|
public void Set(EndPlayerSessionOptions other)
|
|
{
|
|
if (other != null)
|
|
{
|
|
m_ApiVersion = MetricsInterface.EndplayersessionApiLatest;
|
|
AccountId = other.AccountId;
|
|
}
|
|
}
|
|
|
|
public void Set(object other)
|
|
{
|
|
Set(other as EndPlayerSessionOptions);
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
Helper.TryMarshalDispose(ref m_AccountId);
|
|
}
|
|
}
|
|
}
|