mtd/Scripts/server_form.gd

19 lines
433 B
GDScript3
Raw Normal View History

extends PanelContainer
class_name ServerForm
signal connect_button_pressed
signal host_button_pressed
func _on_host_pressed() -> void:
host_button_pressed.emit()
queue_free()
func _on_connect_pressed() -> void:
connect_button_pressed.emit()
queue_free()
func get_server_ip() -> String:
return $VBoxContainer/HBoxContainer/ServerIP.text
func get_server_port() -> String:
return $VBoxContainer/HBoxContainer2/ServerPort.text