Files
SoulliesOfficial c3b1561375 更新
2026-04-01 12:23:27 -04:00

25 lines
723 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using Continentis.MainGame;
namespace Continentis
{
public partial class InfoTransistor
{
[Serializable]
public class MenuToMainGame
{
/// <summary>
/// 跑局意图:告知 MainGameManager.Awake() 该执行新游戏还是继续游戏。
/// 由 MenuManager菜单跳转或 MainGameManager.ExitCombat胜利后进入下一战写入。
/// </summary>
public Menu.MenuIntent menuIntent = Menu.MenuIntent.None;
/// <summary>
/// 新游戏时传入的 RunConfigContinueRun 时为 null。
/// </summary>
public RunConfig pendingRunConfig;
}
}
}