#if UNITY_2022_2_OR_NEWER using System.Collections.Generic; namespace Unity.AI.Navigation.Editor.Converter { /// /// A structure needed for the initialization step of the converter. /// Stores data to be visible in the UI. /// internal struct InitializeConverterContext { /// /// Stores the list of ConverterItemDescriptor that will be filled in during the initialization step. /// internal List items; /// /// Add to the list of assets to be converted. /// This will be used to display information to the user in the UI. /// /// The item to add to the list items to convert internal void AddAssetToConvert(ConverterItemDescriptor item) { items.Add(item); } } } #endif