mirror of
https://github.com/tuyoogame/YooAsset.git
synced 2026-06-23 05:13:42 +00:00
16 lines
415 B
C#
16 lines
415 B
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using YooAsset;
|
|
|
|
public class OperationHelper
|
|
{
|
|
/// <summary>
|
|
/// 开始一个业务实现的自定义异步任务
|
|
/// </summary>
|
|
public static void StartOperation(AsyncOperationBase operation)
|
|
{
|
|
AsyncOperationSystem.StartOperation(AsyncOperationSystem.GlobalSchedulerName, operation);
|
|
}
|
|
} |