mirror of
https://git.erg.school/P039/art_num_2024.git
synced 2026-02-04 13:09:20 +01:00
17 lines
248 B
GDScript
17 lines
248 B
GDScript
extends Node2D
|
|
|
|
|
|
func _on_start_pressed() -> void:
|
|
get_tree().change_scene_to_file("res://scenes/nunescrpt.tscn")
|
|
|
|
|
|
func _on_options_pressed() -> void:
|
|
pass # Replace with function body.
|
|
|
|
|
|
func _on_quit_pressed() -> void:
|
|
get_tree().quit()
|
|
|
|
|
|
|