mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-03 00:00:49 +08:00
39 lines
700 B
C#
39 lines
700 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace Serein.Library.Enums
|
|||
|
|
{
|
|||
|
|
public enum NodeType
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 初始化
|
|||
|
|
/// </summary>
|
|||
|
|
Init,
|
|||
|
|
/// <summary>
|
|||
|
|
/// 开始载入
|
|||
|
|
/// </summary>
|
|||
|
|
Loading,
|
|||
|
|
/// <summary>
|
|||
|
|
/// 结束
|
|||
|
|
/// </summary>
|
|||
|
|
Exit,
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 触发器
|
|||
|
|
/// </summary>
|
|||
|
|
Flipflop,
|
|||
|
|
/// <summary>
|
|||
|
|
/// 条件节点
|
|||
|
|
/// </summary>
|
|||
|
|
Condition,
|
|||
|
|
/// <summary>
|
|||
|
|
/// 动作节点
|
|||
|
|
/// </summary>
|
|||
|
|
Action,
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|