Autorun open single instance of app

This commit is contained in:
Natsumi
2025-08-23 12:27:51 +12:00
parent 6a3b0cd24a
commit ae30ad978b
6 changed files with 58 additions and 7 deletions

View File

@@ -149,10 +149,11 @@ namespace VRCX
return output;
}
public void SetAppLauncherSettings(bool enabled, bool killOnExit)
public void SetAppLauncherSettings(bool enabled, bool killOnExit, bool runProcessOnce)
{
AutoAppLaunchManager.Instance.Enabled = enabled;
AutoAppLaunchManager.Instance.KillChildrenOnExit = killOnExit;
AutoAppLaunchManager.Instance.RunProcessOnce = runProcessOnce;
}
public string GetFileBase64(string path)