com.alicizax.unity.tuyoogam.../Samples~/Mini Game/Runtime/TiktokFileSystem/Operation/TTFSInitializeOperation.cs

20 lines
461 B
C#
Raw Permalink Normal View History

2025-02-28 16:11:01 +08:00
#if UNITY_WEBGL && DOUYINMINIGAME
using YooAsset;
internal partial class TTFSInitializeOperation : FSInitializeFileSystemOperation
{
private readonly TiktokFileSystem _fileSystem;
public TTFSInitializeOperation(TiktokFileSystem fileSystem)
{
_fileSystem = fileSystem;
}
internal override void InternalStart()
{
Status = EOperationStatus.Succeed;
}
internal override void InternalUpdate()
{
}
}
#endif