// Copyright (c) 2025-2026 GeWuYou
// SPDX-License-Identifier: Apache-2.0
using GFramework.Core.Abstractions.Utility;
namespace GFramework.Game.Abstractions.UI;
///
/// UI工厂接口,用于创建UI页面实例
///
public interface IUiFactory : IContextUtility
{
///
/// 创建或获取UI页面实例
///
/// UI标识键
/// UI页面实例
IUiPageBehavior Create(string uiKey);
}