using UnityEngine.ResourceManagement.AsyncOperations; namespace UnityEngine.Localization { /// /// Indicates that the class requires preloading during initialization before it is ready for use. /// public interface IPreloadRequired { /// /// Handle to the preload operation. /// AsyncOperationHandle PreloadOperation { get; } } }