mirror of
https://git.kittycat.homes/zoe/codename-routes.git
synced 2024-08-15 03:18:26 +00:00
7 lines
118 B
GDScript
7 lines
118 B
GDScript
|
extends Control
|
||
|
|
||
|
signal reload_requested
|
||
|
|
||
|
func _on_Reload_pressed():
|
||
|
emit_signal("reload_requested", $TextEdit.text)
|