11 lines
159 B
GDScript
11 lines
159 B
GDScript
extends Control
|
|
|
|
|
|
func _on_quit_button_pressed() -> void:
|
|
Game.quit_to_desktop()
|
|
|
|
|
|
func _on_play_button_pressed() -> void:
|
|
Game.restart_game()
|
|
queue_free()
|