mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-02-11 15:40:46 +00:00
50 lines
1.3 KiB
C#
50 lines
1.3 KiB
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.CopyAchievementDefinitionByAchievementId" /> function.
|
|
/// </summary>
|
|
public class CopyAchievementDefinitionByAchievementIdOptions
|
|
{
|
|
/// <summary>
|
|
/// Achievement ID to look for when copying definition from the cache
|
|
/// </summary>
|
|
public string AchievementId { get; set; }
|
|
}
|
|
|
|
[System.Runtime.InteropServices.StructLayout(System.Runtime.InteropServices.LayoutKind.Sequential, Pack = 8)]
|
|
internal struct CopyAchievementDefinitionByAchievementIdOptionsInternal : ISettable, System.IDisposable
|
|
{
|
|
private int m_ApiVersion;
|
|
private System.IntPtr m_AchievementId;
|
|
|
|
public string AchievementId
|
|
{
|
|
set
|
|
{
|
|
Helper.TryMarshalSet(ref m_AchievementId, value);
|
|
}
|
|
}
|
|
|
|
public void Set(CopyAchievementDefinitionByAchievementIdOptions other)
|
|
{
|
|
if (other != null)
|
|
{
|
|
m_ApiVersion = AchievementsInterface.CopydefinitionbyachievementidApiLatest;
|
|
AchievementId = other.AchievementId;
|
|
}
|
|
}
|
|
|
|
public void Set(object other)
|
|
{
|
|
Set(other as CopyAchievementDefinitionByAchievementIdOptions);
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
Helper.TryMarshalDispose(ref m_AchievementId);
|
|
}
|
|
}
|
|
} |