mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-05-07 08:44:29 +08:00
9 lines
278 B
C#
9 lines
278 B
C#
// Copyright (c) 2025-2026 GeWuYou
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
namespace GFramework.Game.Abstractions.UI;
|
|
|
|
/// <summary>
|
|
/// UI切换处理器执行选项
|
|
/// </summary>
|
|
public record UiTransitionHandlerOptions(int TimeoutMs = 0, bool ContinueOnError = true); |