准备区分节点、参数、返回值的连接,做个备份

This commit is contained in:
fengjiayi
2024-10-23 19:22:27 +08:00
parent a495a34413
commit 0666f0b2c1
36 changed files with 1497 additions and 756 deletions

View File

@@ -0,0 +1,31 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Serein.Library
{
/// <summary>
/// 连接点类型
/// </summary>
public enum JunctionType
{
/// <summary>
/// 当前执行
/// </summary>
Execute,
/// <summary>
/// 入参
/// </summary>
ArgData,
/// <summary>
/// 返回值
/// </summary>
ReturnData,
/// <summary>
/// 下一步要执行的节点
/// </summary>
NextStep,
}
}