/// <summary> /// Simple wrapper method to help with playing system audio /// </summary> public void PlaySystemSound(SystemSound sound, int volume) { _misty.PlayAudio($"s_{sound.ToString()}.wav", volume, null); }
/// <summary> /// Simple method wrapper to help with playing system audio /// </summary> public void PlaySystemSound(SystemSound sound) { _misty.PlayAudio($"s_{sound.ToString()}.wav", null, null); }