mirror of
https://github.com/tuyoogame/YooAsset.git
synced 2026-05-14 19:40:47 +00:00
20 lines
526 B
C#
20 lines
526 B
C#
|
|
namespace YooAsset
|
|
{
|
|
internal sealed class DWFSClearUnusedBundleFilesOperation : FSClearUnusedBundleFilesOperation
|
|
{
|
|
private readonly DefaultWebFileSystem _fileSystem;
|
|
|
|
internal DWFSClearUnusedBundleFilesOperation(DefaultWebFileSystem fileSystem)
|
|
{
|
|
_fileSystem = fileSystem;
|
|
}
|
|
internal override void InternalOnStart()
|
|
{
|
|
Status = EOperationStatus.Succeed;
|
|
}
|
|
internal override void InternalOnUpdate()
|
|
{
|
|
}
|
|
}
|
|
} |