mirror of
https://github.com/tuyoogame/YooAsset.git
synced 2026-05-22 00:11:41 +00:00
24 lines
524 B
C#
24 lines
524 B
C#
|
|
namespace YooAsset
|
|
{
|
|
/// <summary>
|
|
/// 编辑器文件缓存初始化操作
|
|
/// </summary>
|
|
internal sealed class EBCInitializeOperation : BCInitializeOperation
|
|
{
|
|
private readonly EditorBundleCache _fileCache;
|
|
|
|
public EBCInitializeOperation(EditorBundleCache cache)
|
|
{
|
|
_fileCache = cache;
|
|
}
|
|
protected override void InternalStart()
|
|
{
|
|
SetResult();
|
|
}
|
|
protected override void InternalUpdate()
|
|
{
|
|
}
|
|
}
|
|
}
|