Client/scripts/ui/quit.gd
Kevin Schmidt b1c2dd4eb5
All checks were successful
Quality Check / Linting (push) Successful in 7s
TD-18: Setup Matchmaking
2025-03-04 15:25:27 +01:00

9 lines
120 B
GDScript

extends Button
func _ready() -> void:
connect("pressed", on_pressed)
func on_pressed() -> void:
get_tree().quit()