summaryrefslogtreecommitdiff
path: root/scripts/UI.cs
diff options
context:
space:
mode:
authorMatheus <matheus.guedes.mg.m@gmail.com>2025-09-01 17:50:25 -0300
committerMatheus <matheus.guedes.mg.m@gmail.com>2025-09-01 17:50:25 -0300
commit0456e7cd82b232a38fd9b6e008be7d49b2f9e90f (patch)
treeea2285eaca0d68c269d07212bc6a1e3688b9aef8 /scripts/UI.cs
parentd7d2454d5ccc1e0acb47cb679c7550e74c4e1916 (diff)
Logs
Diffstat (limited to 'scripts/UI.cs')
-rw-r--r--scripts/UI.cs17
1 files changed, 0 insertions, 17 deletions
diff --git a/scripts/UI.cs b/scripts/UI.cs
deleted file mode 100644
index 781c14a..0000000
--- a/scripts/UI.cs
+++ /dev/null
@@ -1,17 +0,0 @@
-using Godot;
-using System;
-
-public partial class UI : Node
-{
- private TextureProgressBar hpBar;
-
- public override void _Ready() {
- base._Ready();
- hpBar = GetNode<TextureProgressBar>("CanvasLayer/MainContainer/HPbar");
- }
-
- public void OnHealthChanged(int hp, int maxHp) {
- hpBar.Value = hp;
- hpBar.MaxValue = maxHp;
- }
-}