namespace GFramework.Game.Abstractions.UI; /// /// UI页面行为提供者接口,用于获取页面行为实例 /// public interface IUiPageBehaviorProvider { /// /// 获取页面行为实例 /// /// 页面行为接口实例 IUiPageBehavior GetPage(); }