10 lines
157 B
GDScript3
10 lines
157 B
GDScript3
|
extends Node
|
||
|
|
||
|
func _ready():
|
||
|
# Called every time the node is added to the scene.
|
||
|
# Initialization here
|
||
|
pass
|
||
|
|
||
|
func _on_BackButton_pressed():
|
||
|
queue_free()
|