mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-13 11:27:42 +01:00
* Fire ActivePluginsChanged after a plugin loaded/unloaded * Add ActivePluginsChangedEventArgs * Use past tense
27 lines
505 B
C#
27 lines
505 B
C#
namespace Dalamud.Plugin;
|
|
|
|
/// <summary>
|
|
/// Causes for a change to the plugin list.
|
|
/// </summary>
|
|
public enum PluginListInvalidationKind
|
|
{
|
|
/// <summary>
|
|
/// A plugin was loaded.
|
|
/// </summary>
|
|
Loaded,
|
|
|
|
/// <summary>
|
|
/// A plugin was unloaded.
|
|
/// </summary>
|
|
Unloaded,
|
|
|
|
/// <summary>
|
|
/// An installer-initiated update reloaded plugins.
|
|
/// </summary>
|
|
Update,
|
|
|
|
/// <summary>
|
|
/// An auto-update reloaded plugins.
|
|
/// </summary>
|
|
AutoUpdate,
|
|
}
|