chore(client): vendor GUT 9.7.1 + headless test harness

This commit is contained in:
2026-07-09 14:05:20 -05:00
parent 1c5f08c5e7
commit 5486ed00fa
261 changed files with 22760 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
@tool
extends AcceptDialog
var should_continue = false
var _check_for_update_ctrl = null
signal closed
func _ready():
add_cancel_button("Cancel Loading GUT")
func _on_confirmed() -> void:
should_continue = true
closed.emit.call_deferred()
func _on_canceled() -> void:
should_continue = false
closed.emit.call_deferred()
func _on_close_requested() -> void:
should_continue = false
closed.emit.call_deferred()
func set_check_for_update_control(ctrl):
_check_for_update_ctrl = ctrl
add_child(ctrl)