Exemple #1
0
 public static void DeInit()
 {
     if (RedoxMod != null)
     {
         return;
     }
     RedoxMod.DeInitialize();
     RedoxMod = null;
 }
Exemple #2
0
        public static void Init(string customPath = "")
        {
            if (RedoxMod != null)
            {
                return;
            }

            RedoxMod = new Redox(customPath);
            RedoxMod.Initialize();
        }