init: 导入项目到 meswork Gitea

This commit is contained in:
XingCheng3
2026-05-29 10:07:05 +08:00
commit ad9a4106fb
3582 changed files with 460312 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
using System.Collections.Generic;
namespace ModelBasic.Process
{
public static class ProcessData
{
// 记录了当前选中的时序基点下的所有工艺
public static List<string> currentSequenceList = new List<string>();
// 记录时序仿真下当前选中节点
public static string currentSequenceNode = null;
}
}