summaryrefslogtreecommitdiff
path: root/scripts/morale.gd
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/morale.gd')
-rw-r--r--scripts/morale.gd11
1 files changed, 0 insertions, 11 deletions
diff --git a/scripts/morale.gd b/scripts/morale.gd
deleted file mode 100644
index 613c7f5..0000000
--- a/scripts/morale.gd
+++ /dev/null
@@ -1,11 +0,0 @@
-extends Label
-
-func _ready():
- GameData.connect("morale_changed", Callable(self, "_on_morale_changed"))
- update_label(GameData.get_morale())
-
-func _on_morale_changed(new_morale: int) -> void:
- update_label(new_morale)
-
-func update_label(new_morale: int) -> void:
- text = "Morale:" + str(new_morale)