mirror of
https://github.com/tuyoogame/YooAsset.git
synced 2026-05-20 07:10:09 +00:00
20 lines
465 B
C#
20 lines
465 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 InternalOnStart()
|
|
{
|
|
Status = EOperationStatus.Succeed;
|
|
}
|
|
internal override void InternalOnUpdate()
|
|
{
|
|
}
|
|
}
|
|
#endif |