// Copyright (c) 2025-2026 GeWuYou
// SPDX-License-Identifier: Apache-2.0
namespace GFramework.Game.Abstractions.UI;
///
/// UI页面行为提供者接口,用于获取页面行为实例
///
public interface IUiPageBehaviorProvider
{
///
/// 获取页面行为实例
///
/// 页面行为接口实例
IUiPageBehavior GetPage();
}