mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-03-23 03:04:29 +08:00
- 将 ISceneRouteGuard 中的 Task 返回类型改为 ValueTask - 将 IUiRouteGuard 中的 Task 返回类型改为 ValueTask - 移除注释中的多余缩进空格 - 提升异步操作的性能表现
9 lines
273 B
C#
9 lines
273 B
C#
using GFramework.Game.Abstractions.Routing;
|
|
|
|
namespace GFramework.Game.Abstractions.UI;
|
|
|
|
/// <summary>
|
|
/// UI页面进入参数接口
|
|
/// 该接口用于定义UI页面跳转时传递的参数数据结构
|
|
/// </summary>
|
|
public interface IUiPageEnterParam : IRouteContext; |