mirror of
https://codeberg.org/Melon-Bread/Comets.gd.git
synced 2024-11-24 21:18:21 -05:00
11 lines
234 B
GDScript3
11 lines
234 B
GDScript3
|
extends Control
|
||
|
|
||
|
func _ready() -> void:
|
||
|
$Panel/StartButton.grab_focus()
|
||
|
|
||
|
func _on_start_button_pressed() -> void:
|
||
|
get_tree().change_scene_to_file("res://scenes/game.tscn")
|
||
|
|
||
|
func _on_quit_button_pressed() -> void:
|
||
|
get_tree().quit()
|