mirror of
https://github.com/tuyoogame/YooAsset.git
synced 2026-06-29 09:53:57 +00:00
20 lines
461 B
C#
20 lines
461 B
C#
#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 |