Files
PerfectTidy_untiy_ios/Assets/Legend/Helper/ILoadAsset.cs
T
2026-06-12 10:11:36 +08:00

16 lines
364 B
C#

using UnityEngine.Events;
using Object = UnityEngine.Object;
namespace LoveLegend
{
public interface ILoadAsset
{
T GetAsset<T>(string dfsad, string sa) where T : Object;
void GetAsset<T>(string dfsad, string sa, UnityAction<T> onCompleted) where T : Object;
void RecycleAsset(string assetUrl, UnityAction onCompleted);
}
}