mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-14 04:34:19 +01:00
30 lines
1.1 KiB
C#
30 lines
1.1 KiB
C#
using OtterGui.Classes;
|
|
using Penumbra.Mods;
|
|
using Penumbra.Mods.Manager;
|
|
|
|
namespace Penumbra.Communication;
|
|
|
|
/// <summary>
|
|
/// Triggered whenever mod meta data or local data is changed.
|
|
/// <list type="number">
|
|
/// <item>Parameter is the type of data change for the mod, which can be multiple flags. </item>
|
|
/// <item>Parameter is the changed mod. </item>
|
|
/// <item>Parameter is the old name of the mod in case of a name change, and null otherwise. </item>
|
|
/// </list> </summary>
|
|
public sealed class ModDataChanged() : EventWrapper<ModDataChangeType, Mod, string?, ModDataChanged.Priority>(nameof(ModDataChanged))
|
|
{
|
|
public enum Priority
|
|
{
|
|
/// <seealso cref="UI.ModsTab.ModFileSystemSelector.OnModDataChange"/>
|
|
ModFileSystemSelector = -10,
|
|
|
|
/// <seealso cref="Mods.Manager.ModCacheManager.OnModDataChange"/>
|
|
ModCacheManager = 0,
|
|
|
|
/// <seealso cref="Mods.Manager.ModFileSystem.OnModDataChange"/>
|
|
ModFileSystem = 0,
|
|
|
|
/// <seealso cref="UI.ModsTab.ModPanelHeader.OnModDataChange"/>
|
|
ModPanelHeader = 0,
|
|
}
|
|
}
|