优化特殊宏的注释管理,确保技能名由用户手动填写并固定为无目标、无宏条件;更新相关文档和界面显示。

This commit is contained in:
waynebian01
2026-09-01 13:24:19 +08:00
parent 3e8168b84b
commit dcd5542df0
11 changed files with 68 additions and 44 deletions

View File

@@ -160,6 +160,8 @@ public sealed class ModuleMacrosSnapshot
public sealed class ModuleMacroEntrySnapshot
{
public string Text { get; set; } = string.Empty;
// 对特殊宏表示必须手工维护的技能名,并以 Lua 行尾注释持久化。
public string? Comment { get; set; }
public ModuleMacroEntrySnapshot Clone() => (ModuleMacroEntrySnapshot)MemberwiseClone();