Add some settingchanged events.

This commit is contained in:
Ottermandias 2024-02-24 12:06:57 +01:00
parent add4b8aa83
commit 1000841f69
9 changed files with 128 additions and 126 deletions

View file

@ -1,4 +1,5 @@
using OtterGui.Classes;
using Penumbra.Api;
using Penumbra.Mods;
using Penumbra.Mods.Manager;
@ -18,6 +19,9 @@ public sealed class ModOptionChanged()
{
public enum Priority
{
/// <seealso cref="PenumbraApi.OnModOptionEdited"/>
Api = int.MinValue,
/// <seealso cref="Collections.Cache.CollectionCacheManager.OnModOptionChange"/>
CollectionCacheManager = -100,

View file

@ -19,15 +19,15 @@ public sealed class ModPathChanged()
{
public enum Priority
{
/// <seealso cref="PenumbraApi.ModPathChangeSubscriber"/>
Api = int.MinValue,
/// <seealso cref="EphemeralConfig.OnModPathChanged"/>
EphemeralConfig = -500,
/// <seealso cref="Collections.Cache.CollectionCacheManager.OnModChangeAddition"/>
CollectionCacheManagerAddition = -100,
/// <seealso cref="PenumbraApi.ModPathChangeSubscriber"/>
Api = 0,
/// <seealso cref="Mods.Manager.ModCacheManager.OnModPathChange"/>
ModCacheManager = 0,