using System.Collections.Generic; namespace ColdMint.scripts.levelGraphEditor; /// /// Level map editor saves data /// 关卡图编辑器保存的数据 /// public class LevelGraphEditorSaveData { public List? ConnectionData { get; set; } }