summaryrefslogtreecommitdiff
path: root/Thronefall_1_0/Decompile/Invulnerable.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Thronefall_1_0/Decompile/Invulnerable.cs')
-rw-r--r--Thronefall_1_0/Decompile/Invulnerable.cs16
1 files changed, 0 insertions, 16 deletions
diff --git a/Thronefall_1_0/Decompile/Invulnerable.cs b/Thronefall_1_0/Decompile/Invulnerable.cs
deleted file mode 100644
index 9a7857c..0000000
--- a/Thronefall_1_0/Decompile/Invulnerable.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-using UnityEngine;
-
-public class Invulnerable : MonoBehaviour
-{
- private Hp hp;
-
- private void Start()
- {
- hp = GetComponent<Hp>();
- }
-
- private void Update()
- {
- hp.Heal(1000000f);
- }
-}