summaryrefslogtreecommitdiff
path: root/Thronefall_v1.0/Decompile/ProjectileSpawnAudio.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Thronefall_v1.0/Decompile/ProjectileSpawnAudio.cs')
-rw-r--r--Thronefall_v1.0/Decompile/ProjectileSpawnAudio.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/Thronefall_v1.0/Decompile/ProjectileSpawnAudio.cs b/Thronefall_v1.0/Decompile/ProjectileSpawnAudio.cs
new file mode 100644
index 0000000..de57603
--- /dev/null
+++ b/Thronefall_v1.0/Decompile/ProjectileSpawnAudio.cs
@@ -0,0 +1,11 @@
+using UnityEngine;
+
+public class ProjectileSpawnAudio : MonoBehaviour
+{
+ public ThronefallAudioManager.AudioOneShot oneShotType;
+
+ private void Start()
+ {
+ ThronefallAudioManager.WorldSpaceOneShot(oneShotType, base.transform.position);
+ }
+}