namespace Guru { using System; using System.Collections.Generic; using UnityEngine; /// /// 批量加载器 /// public interface IBatchLoader { /// /// 批量加载 /// /// /// void LoadQueue(string[] resUriList, Action> onLoadComplete); } }