summaryrefslogtreecommitdiff
path: root/hud.gd
diff options
context:
space:
mode:
Diffstat (limited to 'hud.gd')
-rw-r--r--hud.gd7
1 files changed, 7 insertions, 0 deletions
diff --git a/hud.gd b/hud.gd
new file mode 100644
index 0000000..d5f7cc3
--- /dev/null
+++ b/hud.gd
@@ -0,0 +1,7 @@
+extends CanvasLayer
+
+
+func _ready() -> void:
+ Game.score_changed.connect(func():
+ %Score.text = str(Game.score)
+ )