using UnityEngine; public class MasterAudioPlayer : MonoBehaviour { public string soundName; public void PlaySound(string soundName) { SFXGameManagement.PlaySound(soundName); } public void StopSound(string soundName) { SFXGameManagement.StopSound(soundName); } public void PlaySound(Transform transform) { SFXGameManagement.PlaySound(soundName, transform); } }