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