blob: 536410df07f759ab37466ba4994a64b3910db650 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
extends Node2D
func _ready():
pass
func _on_Exit_on_click():
get_tree().quit()
func _on_Strart_on_click():
get_tree().change_scene("res://scenes/introduction.tscn")
|