2025-01-09 11:31:04 +08:00
|
|
|
|
|
|
|
|
|
namespace YooAsset
|
|
|
|
|
{
|
|
|
|
|
internal class DEFSInitializeOperation : FSInitializeFileSystemOperation
|
|
|
|
|
{
|
|
|
|
|
private readonly DefaultEditorFileSystem _fileSytem;
|
|
|
|
|
|
|
|
|
|
internal DEFSInitializeOperation(DefaultEditorFileSystem fileSystem)
|
|
|
|
|
{
|
|
|
|
|
_fileSytem = fileSystem;
|
|
|
|
|
}
|
2025-02-28 16:11:01 +08:00
|
|
|
|
internal override void InternalStart()
|
2025-01-09 11:31:04 +08:00
|
|
|
|
{
|
|
|
|
|
Status = EOperationStatus.Succeed;
|
|
|
|
|
}
|
2025-02-28 16:11:01 +08:00
|
|
|
|
internal override void InternalUpdate()
|
2025-01-09 11:31:04 +08:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|