online multiplayer chess game (note server currently down)
Diffstat (limited to 'ui/GameUI.gd')
-rw-r--r--ui/GameUI.gd7
1 files changed, 7 insertions, 0 deletions
diff --git a/ui/GameUI.gd b/ui/GameUI.gd
new file mode 100644
index 0000000..dd4a737
--- /dev/null
+++ b/ui/GameUI.gd
@@ -0,0 +1,7 @@
+extends CanvasLayer
+
+onready var status: StatusLabel = $Holder/Back/VBox/Status
+
+
+func set_status(text: String, length := 5) -> void:
+ status.set_text(text, length)