using UnityEngine; [CreateAssetMenu(fileName = "SoundPlayer", menuName = "ScriptableObject/Game/SoundPlayer")] public class SoundPlayer : ScriptableSingleton { SoundMgr soundMgr => SoundMgr.Instance; public void PlaySfx(AudioClip clip) => soundMgr.PlaySfx(clip); }