using UnityEngine; using System; using Object = UnityEngine.Object; namespace ZXKFramework { public interface IRes { void Load(string assetName, Action action = null) where T : Object; void UnLoadAll(); } }