mtd/Scripts/won_game_screen.gd
2023-11-20 21:20:29 +11:00

12 lines
180 B
GDScript

extends Control
func _on_quit_button_pressed() -> void:
Game.scene_switch_main_menu()
queue_free()
func _on_play_button_pressed() -> void:
Game.restart_game()
queue_free()