2026-01-05 17:29:39 +08:00
|
|
|
extends Node2D
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func _on_join_game_pressed() -> void:
|
|
|
|
|
$JoinGameUI.show()
|
|
|
|
|
|
|
|
|
|
func _on_start_game_pressed() -> void:
|
|
|
|
|
$CreateGameUI.show()
|
2026-01-06 08:12:57 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
func _on_setting_button_pressed() -> void:
|
|
|
|
|
SceneManager.goto_scene("settings")
|