mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 10:17:22 +01:00
fix: actually add values
This commit is contained in:
parent
aaa3e33a8b
commit
8939cac80f
1 changed files with 5 additions and 5 deletions
|
|
@ -9,25 +9,25 @@ public enum PluginLoadReason
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// We don't know why this plugin was loaded.
|
/// We don't know why this plugin was loaded.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Unknown,
|
Unknown = 1 << 0,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// This plugin was loaded because it was installed with the plugin installer.
|
/// This plugin was loaded because it was installed with the plugin installer.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Installer,
|
Installer = 1 << 1,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// This plugin was loaded because it was just updated.
|
/// This plugin was loaded because it was just updated.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Update,
|
Update = 1 << 2,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// This plugin was loaded because it was told to reload.
|
/// This plugin was loaded because it was told to reload.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Reload,
|
Reload = 1 << 3,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// This plugin was loaded because the game was started or Dalamud was reinjected.
|
/// This plugin was loaded because the game was started or Dalamud was reinjected.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Boot,
|
Boot = 1 << 4,
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue