9 lines
155 B
GDScript
9 lines
155 B
GDScript
extends Control
|
|
|
|
# Called when the node enters the scene tree for the first time.
|
|
func _ready():
|
|
pass
|
|
|
|
|
|
func _on_quit_pressed():
|
|
$Window.visible = false
|