Ejemplo n.º 1
0
        public void OnDisabled()
        {
            Config = null;

            _harmony.UnpatchAll(HarmonyId);
            _harmony = null;
        }
Ejemplo n.º 2
0
        public void OnEnabled()
        {
            if (_harmony != null)
            {
                return;
            }

            _harmony = HarmonyInstance.Create(HarmonyId);
            _harmony.PatchAll(GetType().Assembly);

            Config = Configuration <TrueLodTogglerConfiguration> .Load();
        }