mirror of https://github.com/tuyoogame/YooAsset
20 lines
517 B
C#
20 lines
517 B
C#
|
|
namespace YooAsset
|
|
{
|
|
internal sealed class DWFSClearAllBundleFilesOperation : FSClearAllBundleFilesOperation
|
|
{
|
|
private readonly DefaultWebFileSystem _fileSystem;
|
|
|
|
internal DWFSClearAllBundleFilesOperation(DefaultWebFileSystem fileSystem)
|
|
{
|
|
_fileSystem = fileSystem;
|
|
}
|
|
internal override void InternalOnStart()
|
|
{
|
|
Status = EOperationStatus.Succeed;
|
|
}
|
|
internal override void InternalOnUpdate()
|
|
{
|
|
}
|
|
}
|
|
} |