1
0
This repository has been archived on 2025-06-02. You can view files and clone it, but cannot push or open issues or pull requests.
2025-03-22 22:27:56 -04:00

12 lines
315 B
GDScript

extends Node
func _ready() -> void:
%VERSION.text = "v" + ProjectSettings.get_setting("application/config/version")
func _on_start_button_pressed() -> void:
GLOBALVARS.reset_variables()
get_tree().change_scene_to_file("res://main_scenes/game.tscn")
func _on_quit_button_pressed() -> void:
get_tree().quit(0)