online multiplayer chess game (note server currently down)
Diffstat (limited to 'ui/menus/account/InfoLabel.gd')
-rw-r--r--ui/menus/account/InfoLabel.gd11
1 files changed, 0 insertions, 11 deletions
diff --git a/ui/menus/account/InfoLabel.gd b/ui/menus/account/InfoLabel.gd
deleted file mode 100644
index 660040c..0000000
--- a/ui/menus/account/InfoLabel.gd
+++ /dev/null
@@ -1,11 +0,0 @@
-extends Label
-class_name InfoLabel
-
-
-func set_text(new_text: String, time := 5) -> void:
- show()
- text = new_text
- if time != 0:
- yield(get_tree().create_timer(time), "timeout")
- text = ""
- hide()