quantum-space-buddies/EpicOnlineTransport/EOSSDK/Generated/Achievements/GetAchievementDefinitionCountOptions.cs
2022-02-05 18:06:25 -08:00

35 lines
928 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
// This file is automatically generated. Changes to this file may be overwritten.
namespace Epic.OnlineServices.Achievements
{
/// <summary>
/// Input parameters for the <see cref="AchievementsInterface.GetAchievementDefinitionCount" /> function.
/// </summary>
public class GetAchievementDefinitionCountOptions
{
}
[System.Runtime.InteropServices.StructLayout(System.Runtime.InteropServices.LayoutKind.Sequential, Pack = 8)]
internal struct GetAchievementDefinitionCountOptionsInternal : ISettable, System.IDisposable
{
private int m_ApiVersion;
public void Set(GetAchievementDefinitionCountOptions other)
{
if (other != null)
{
m_ApiVersion = AchievementsInterface.GetachievementdefinitioncountApiLatest;
}
}
public void Set(object other)
{
Set(other as GetAchievementDefinitionCountOptions);
}
public void Dispose()
{
}
}
}