docs: 按 Godot 规范优化全部 GDScript 注释

- 类/信号/方法添加 ## 文档注释与 @param 标签
- 清理 pass 占位残留
This commit is contained in:
2026-08-03 22:25:43 +08:00
parent 19f81ceeec
commit 782b1f1701
8 changed files with 115 additions and 23 deletions
+4 -2
View File
@@ -1,8 +1,10 @@
## 存档选择面板(挂载于 SavePanel.tscn)。
## 显示存档列表与"新建存档"入口,通过信号通知外部结果。
extends PanelContainer
## 请求关闭面板(返回上级界面)。
signal back_pressed
## 点击"返回"按钮。
func _on_button_esc_button_up() -> void:
back_pressed.emit()
pass # Replace with function body.