summaryrefslogtreecommitdiff
path: root/boss_hp.gd
diff options
context:
space:
mode:
Diffstat (limited to 'boss_hp.gd')
-rw-r--r--boss_hp.gd10
1 files changed, 10 insertions, 0 deletions
diff --git a/boss_hp.gd b/boss_hp.gd
new file mode 100644
index 0000000..12f094f
--- /dev/null
+++ b/boss_hp.gd
@@ -0,0 +1,10 @@
+extends Control
+
+
+func set_full():
+ $Full.visible = true
+ $Empty.visible = false
+
+func set_empty():
+ $Full.visible = false
+ $Empty.visible = true