/// <summary> /// Initialize the static AudioManager functionality. /// </summary> /// <param name="game">The game that this component will be attached to.</param> public static void Initialize(Game game) { audioManager = new AudioManager(game); audioManager.soundBank = new Dictionary<string, SoundEffectInstance>(); audioManager.musicBank = new Dictionary<string, Song>(); game.Components.Add(audioManager); }