2025-05-01 01:48:08 -07:00

16 lines
429 B
C#

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