mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-27 10:59:18 +01:00
17 lines
346 B
C#
17 lines
346 B
C#
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,
|
|
}
|