16 lines
429 B
C#
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; }
|
|
}
|
|
}
|