using System.Collections; using System.Collections.Generic; using UnityEngine; namespace TFramework { /// /// 引用接口 /// public interface IReference { /// /// 重置引用 /// void Reset(); } }