mirror of
https://github.com/tuyoogame/YooAsset.git
synced 2026-05-24 01:30:14 +00:00
21 lines
493 B
C#
21 lines
493 B
C#
|
|
namespace YooAsset
|
|
{
|
|
internal abstract class FSClearAllBundleFilesOperation : AsyncOperationBase
|
|
{
|
|
}
|
|
|
|
internal sealed class FSClearAllBundleFilesCompleteOperation : FSClearAllBundleFilesOperation
|
|
{
|
|
internal FSClearAllBundleFilesCompleteOperation()
|
|
{
|
|
}
|
|
internal override void InternalOnStart()
|
|
{
|
|
Status = EOperationStatus.Succeed;
|
|
}
|
|
internal override void InternalOnUpdate()
|
|
{
|
|
}
|
|
}
|
|
} |