summaryrefslogtreecommitdiff
path: root/Thronefall_v1.0/Decompile/ProjectileSpawnAudio.cs
blob: de576036016908419e5aaf1b6124d0e781318b60 (plain)
1
2
3
4
5
6
7
8
9
10
11
using UnityEngine;

public class ProjectileSpawnAudio : MonoBehaviour
{
	public ThronefallAudioManager.AudioOneShot oneShotType;

	private void Start()
	{
		ThronefallAudioManager.WorldSpaceOneShot(oneShotType, base.transform.position);
	}
}