summaryrefslogtreecommitdiff
path: root/Thronefall_v1.0/Decompile/DisableOnStart.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Thronefall_v1.0/Decompile/DisableOnStart.cs')
-rw-r--r--Thronefall_v1.0/Decompile/DisableOnStart.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/Thronefall_v1.0/Decompile/DisableOnStart.cs b/Thronefall_v1.0/Decompile/DisableOnStart.cs
new file mode 100644
index 0000000..2a38cf4
--- /dev/null
+++ b/Thronefall_v1.0/Decompile/DisableOnStart.cs
@@ -0,0 +1,9 @@
+using UnityEngine;
+
+public class DisableOnStart : MonoBehaviour
+{
+ private void Start()
+ {
+ base.gameObject.SetActive(value: false);
+ }
+}