// Copyright Epic Games, Inc. All Rights Reserved. // This file is automatically generated. Changes to this file may be overwritten. namespace Epic.OnlineServices.Achievements { /// /// Input parameters for the function. /// public struct CopyAchievementDefinitionByIndexOptions { /// /// Index of the achievement definition to retrieve from the cache /// public uint AchievementIndex { get; set; } } [System.Runtime.InteropServices.StructLayout(System.Runtime.InteropServices.LayoutKind.Sequential, Pack = 8)] internal struct CopyAchievementDefinitionByIndexOptionsInternal : ISettable, System.IDisposable { private int m_ApiVersion; private uint m_AchievementIndex; public uint AchievementIndex { set { m_AchievementIndex = value; } } public void Set(ref CopyAchievementDefinitionByIndexOptions other) { m_ApiVersion = AchievementsInterface.CopydefinitionbyindexApiLatest; AchievementIndex = other.AchievementIndex; } public void Set(ref CopyAchievementDefinitionByIndexOptions? other) { if (other.HasValue) { m_ApiVersion = AchievementsInterface.CopydefinitionbyindexApiLatest; AchievementIndex = other.Value.AchievementIndex; } } public void Dispose() { } } }