NLDClient-yudde/ProjectNLD/Assets/Code/Scripts/Gameplay/FirstTimeFlow/E_FirstTimeFlow.cs

37 lines
809 B
C#
Raw Normal View History

2025-03-27 14:46:41 +08:00
namespace Gameplay.FirstTimeFlow
{
/// <summary>
/// 强制流程类型
/// </summary>
public enum E_FirstTimeFlow
{
/// <summary>
/// 播放开始PV
/// </summary>
StarVideo = 1,
/// <summary>
/// 剧情关卡1
/// </summary>
StoryLevel_1 = 2,
2025-03-27 16:47:05 +08:00
/// <summary>
/// 战斗关卡1
/// </summary>
FightLevel_1 = 3,
/// <summary>
/// 剧情关卡2
/// </summary>
StoryLevel_2 = 4,
/// <summary>
/// 编队
/// </summary>
SetTeam = 5,
/// <summary>
/// 剧情关卡3
/// </summary>
StoryLevel_3 = 6,
/// <summary>
/// 播放结束PV
/// </summary>
EndVideo = 7,
2025-03-27 14:46:41 +08:00
}
}