using System;
using System.Drawing;
public static class DisplayFusionFunction
{
public static void Run()
{
// Prompt to select an audio device
string selectedAudioDevice = BFS.Dialog.GetUserInputList("Please select an audio device:", BFS.Audio.GetPlaybackDevices());
// Set the selected device as the default playback device
BFS.Audio.SetDefaultPlaybackSounds(selectedAudioDevice);
// Set the selected device as the default communication device
BFS.Audio.SetDefaultPlaybackCommunications(selectedAudioDevice);
}
}