using System;
using System.Drawing;
public static class DisplayFusionFunction
{
public static void Run(IntPtr windowHandle)
{
// Get the current mute state and toggle it
bool isCurrentlyMuted = BFS.Audio.GetMute();
BFS.Audio.SetMute(!isCurrentlyMuted);
}
}