UnityGameProjectsCode / InTheDarkGame / Managers / SoundManager.cs
SoundManager.cs
Raw
using UnityEngine;

public class SoundManager : MonoBehaviour
{
    private AudioSource ambiance;

    private void Awake()
    {
        ambiance = GetComponent<AudioSource>();
    }
}