using PMaker.DependencyInjection; using System.Collections; using System.Collections.Generic; using UnityEngine; public class AudioController : SingletonMonobehaviour { [SerializeField] private AudioSource _audioSource; private void Reset() { this._audioSource = this.GetComponent(); } void Start() { } // Update is called once per frame void Update() { } }