summaryrefslogtreecommitdiff
path: root/Thronefall_1_0/Decompile/LimitedLifetime.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Thronefall_1_0/Decompile/LimitedLifetime.cs')
-rw-r--r--Thronefall_1_0/Decompile/LimitedLifetime.cs11
1 files changed, 0 insertions, 11 deletions
diff --git a/Thronefall_1_0/Decompile/LimitedLifetime.cs b/Thronefall_1_0/Decompile/LimitedLifetime.cs
deleted file mode 100644
index 1d99757..0000000
--- a/Thronefall_1_0/Decompile/LimitedLifetime.cs
+++ /dev/null
@@ -1,11 +0,0 @@
-using UnityEngine;
-
-public class LimitedLifetime : MonoBehaviour
-{
- public float liftetime = 5f;
-
- private void Start()
- {
- Object.Destroy(base.gameObject, liftetime);
- }
-}