Coded in C# !
Using Human_Body;
Class UseBrain()
{
Public void Main();
{
StartBrain();
}
Private string BrainPath = "Head\\Brain.exe";
Private void StartBrain()
{
Process.Start(BrainPath);
MessagBox.Show("Brain.exe started successfully. Enjoy!");
}
}
|