mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-30 04:13:40 +01:00
As if you needed a reason
This commit is contained in:
parent
72a2c09942
commit
a65dee2742
5 changed files with 59 additions and 16 deletions
33
Dalamud/Plugin/PluginLoadReason.cs
Normal file
33
Dalamud/Plugin/PluginLoadReason.cs
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
namespace Dalamud.Plugin
|
||||
{
|
||||
/// <summary>
|
||||
/// This enum reflects reasons for loading a plugin.
|
||||
/// </summary>
|
||||
public enum PluginLoadReason
|
||||
{
|
||||
/// <summary>
|
||||
/// We don't know why this plugin was loaded.
|
||||
/// </summary>
|
||||
Unknown,
|
||||
|
||||
/// <summary>
|
||||
/// This plugin was loaded because it was installed with the plugin installer.
|
||||
/// </summary>
|
||||
Installer,
|
||||
|
||||
/// <summary>
|
||||
/// This plugin was loaded because it was just updated.
|
||||
/// </summary>
|
||||
Update,
|
||||
|
||||
/// <summary>
|
||||
/// This plugin was loaded because it was told to reload.
|
||||
/// </summary>
|
||||
Reload,
|
||||
|
||||
/// <summary>
|
||||
/// This plugin was loaded because the game was started or Dalamud was reinjected.
|
||||
/// </summary>
|
||||
Boot,
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue