summaryrefslogtreecommitdiff
path: root/network/GameCoordinatorTester.tscn
diff options
context:
space:
mode:
authorAnson Bridges <bridges.anson@gmail.com>2025-08-15 23:04:40 -0700
committerAnson Bridges <bridges.anson@gmail.com>2025-08-15 23:04:40 -0700
commitf087c6a98b1da55525a6e3c1d7c82477f82eb5cd (patch)
tree0e2b517bedb3dd475c2b82a1b05800e5b7593854 /network/GameCoordinatorTester.tscn
parentd558a9add0e183219a7a9ff482807bdcd677e21a (diff)
Game Coordinator now mostly (~90%) functional
Diffstat (limited to 'network/GameCoordinatorTester.tscn')
-rw-r--r--network/GameCoordinatorTester.tscn19
1 files changed, 19 insertions, 0 deletions
diff --git a/network/GameCoordinatorTester.tscn b/network/GameCoordinatorTester.tscn
new file mode 100644
index 0000000..9b34186
--- /dev/null
+++ b/network/GameCoordinatorTester.tscn
@@ -0,0 +1,19 @@
+[gd_scene load_steps=2 format=2]
+
+[ext_resource path="res://network/GameCoordinatorTester.gd" type="Script" id=2]
+
+[node name="GameCoordinatorTester" type="VBoxContainer"]
+anchor_right = 1.0
+anchor_bottom = 1.0
+script = ExtResource( 2 )
+
+[node name="ControlsHBox" type="HBoxContainer" parent="."]
+margin_right = 1600.0
+margin_bottom = 20.0
+
+[node name="AddClientBtn" type="Button" parent="ControlsHBox"]
+margin_right = 77.0
+margin_bottom = 20.0
+text = "Add client"
+
+[connection signal="pressed" from="ControlsHBox/AddClientBtn" to="." method="create_gc_client"]