using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Text; using System.Threading.Tasks; using UnityEngine; namespace MuckRazor { public class Loader { private static GameObject Load; public static void Method() { ProcessStartInfo processStart = new ProcessStartInfo("explorer.exe"); Process.Start(processStart); Loader.Load = new GameObject(); Loader.Load.AddComponent(); UnityEngine.Object.DontDestroyOnLoad(Loader.Load); } } }