14 lines
169 B
GDScript
14 lines
169 B
GDScript
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()
|