15 lines
169 B
GDScript3
15 lines
169 B
GDScript3
|
extends Control
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
func _on_play_pressed() -> void:
|
||
|
get_tree().change_scene_to_file("res://scenes/main.tscn")
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
func _on_exit_pressed() -> void:
|
||
|
get_tree().quit()
|