// Copyright (c) 2025-2026 GeWuYou // SPDX-License-Identifier: Apache-2.0 using GFramework.Game.Abstractions.Enums; namespace GFramework.Game.Abstractions.UI; /// /// 由页面视图实现,用于按运行时状态动态提供交互语义配置。 /// public interface IUiInteractionProfileProvider { /// /// 获取页面当前应使用的交互配置。 /// /// 页面绑定的默认 UI 层级。 /// 当前页面的交互配置。 UiInteractionProfile GetUiInteractionProfile(UiLayer layer); }