mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-19 06:17:43 +01:00
feat: add ActivePluginsChanged event to DPI (closes #1192)
This commit is contained in:
parent
fa73ccd3ee
commit
839519b2bb
4 changed files with 59 additions and 2 deletions
17
Dalamud/Plugin/PluginListInvalidationKind.cs
Normal file
17
Dalamud/Plugin/PluginListInvalidationKind.cs
Normal 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,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue