10 lines
120 B
GDScript3
10 lines
120 B
GDScript3
|
extends Button
|
||
|
|
||
|
func _ready():
|
||
|
pass # Replace with function body.
|
||
|
|
||
|
|
||
|
|
||
|
func _on_ExitButton_pressed():
|
||
|
get_tree().quit()
|