20 lines
493 B
C#
20 lines
493 B
C#
|
|
namespace YooAsset
|
|
{
|
|
internal class DEFSInitializeOperation : FSInitializeFileSystemOperation
|
|
{
|
|
private readonly DefaultEditorFileSystem _fileSytem;
|
|
|
|
internal DEFSInitializeOperation(DefaultEditorFileSystem fileSystem)
|
|
{
|
|
_fileSytem = fileSystem;
|
|
}
|
|
internal override void InternalStart()
|
|
{
|
|
Status = EOperationStatus.Succeed;
|
|
}
|
|
internal override void InternalUpdate()
|
|
{
|
|
}
|
|
}
|
|
} |