using System;
using System.Drawing;
public static class DisplayFusionFunction
{
public static void Run(IntPtr windowHandle)
{
// Simulate pressing the Alt key
BFS.Input.SendKeyDownWithoutWait("%");
// Simulate pressing the Shift key
BFS.Input.SendKeyDownWithoutWait("+");
// Simulate releasing the Shift key
BFS.Input.SendKeyUpWithoutWait("+");
//Simulate releasing the Alt key
BFS.Input.SendKeyUpWithoutWait("%");
// Made by Alamo#4242
}
}