24 lines
		
	
	
		
			479 B
		
	
	
	
		
			C#
		
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			479 B
		
	
	
	
		
			C#
		
	
	
| 
 | |
| 
 | |
| namespace Guru
 | |
| {
 | |
|     using System;
 | |
|     using System.Collections.Generic;
 | |
|     using UnityEngine;
 | |
|     
 | |
|     /// <summary>
 | |
|     /// 批量加载器
 | |
|     /// </summary>
 | |
|     public interface IBatchLoader
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// 批量加载
 | |
|         /// </summary>
 | |
|         /// <param name="resUriList"></param>
 | |
|         /// <param name="onLoadComplete"></param>
 | |
|         void LoadQueue(string[] resUriList, Action<List<ResLoadInfo>> onLoadComplete);
 | |
|     }
 | |
|     
 | |
|     
 | |
|     
 | |
| } |