mirror of
https://github.com/kristoferssolo/FuncIt.git
synced 2025-10-21 19:30:35 +00:00
15 lines
246 B
GDScript
15 lines
246 B
GDScript
extends Control
|
|
|
|
|
|
func _on_return_to_game_pressed():
|
|
hide()
|
|
|
|
|
|
func _on_return_to_main_menu_pressed():
|
|
Network._server_leave()
|
|
get_tree().change_scene("res://source/scenes/GUI/main_menu.tscn")
|
|
|
|
|
|
func _on_exit_game_pressed():
|
|
get_tree().quit()
|