123456789101112131415161718192021222324252627 |
- using System;
- namespace BepInEx.Preloader
- {
-
-
-
-
- public static class EnvVars
- {
-
-
-
- public static string DOORSTOP_INVOKE_DLL_PATH { get; private set; }
-
-
-
- public static string DOORSTOP_MANAGED_FOLDER_DIR { get; private set; }
- internal static void LoadVars()
- {
- DOORSTOP_INVOKE_DLL_PATH = Environment.GetEnvironmentVariable("DOORSTOP_INVOKE_DLL_PATH");
- DOORSTOP_MANAGED_FOLDER_DIR = Environment.GetEnvironmentVariable("DOORSTOP_MANAGED_FOLDER_DIR");
- }
- }
- }
|