using System; using System.Collections; using System.Collections.Generic; using UnityEngine; namespace TModule.Runtime { public class DownloadFileInfo { public string m_url; public string m_savePath; public Action onProgress; public Action onErroe; public Action onOver; } }