feat: add ActivePluginsChanged event to DPI (closes #1192)

This commit is contained in:
goat 2023-05-21 18:53:47 +02:00
parent fa73ccd3ee
commit 839519b2bb
No known key found for this signature in database
GPG key ID: 49E2AA8C6A76498B
4 changed files with 59 additions and 2 deletions

View file

@ -0,0 +1,17 @@
namespace Dalamud.Plugin;
/// <summary>
/// Causes for a change to the plugin list.
/// </summary>
public enum PluginListInvalidationKind
{
/// <summary>
/// An installer-initiated update reloaded plugins.
/// </summary>
Update,
/// <summary>
/// An auto-update reloaded plugins.
/// </summary>
AutoUpdate,
}