添加逻辑节点支持字符串值

This commit is contained in:
艾竹
2023-04-19 22:26:04 +08:00
parent 451df2d5de
commit f8340b5885
10 changed files with 1141 additions and 51 deletions

View File

@@ -4,10 +4,11 @@ using System.Text;
namespace AIStudio.Wpf.DiagramDesigner
{
public enum ValueTypePoint
public enum ValueType
{
Real = 0,
Int = 1,
Bool = 2,
String = 3,
}
}