mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 10:17:22 +01:00
Remove unused PluginOperationResult enum
This commit is contained in:
parent
3a29603def
commit
cf893b2c58
1 changed files with 0 additions and 57 deletions
|
|
@ -1,57 +0,0 @@
|
|||
using System;
|
||||
|
||||
namespace Dalamud.Plugin.Internal.Types
|
||||
{
|
||||
/// <summary>
|
||||
/// This represents the result of a an operation taken against a plugin.
|
||||
/// Loading, unloading, installation, etc.
|
||||
/// </summary>
|
||||
internal enum PluginOperationResult
|
||||
{
|
||||
/// <summary>
|
||||
/// The result is unknown. Should not be used.
|
||||
/// </summary>
|
||||
[Obsolete("Do not use this", error: true)]
|
||||
Unknown,
|
||||
|
||||
/// <summary>
|
||||
/// The result is pending. Take a seat and wait.
|
||||
/// </summary>
|
||||
Pending,
|
||||
|
||||
/// <summary>
|
||||
/// The operation was successful.
|
||||
/// </summary>
|
||||
Success,
|
||||
|
||||
/// <summary>
|
||||
/// During the plugin operation, an unexpected error occurred.
|
||||
/// </summary>
|
||||
UnknownError,
|
||||
|
||||
/// <summary>
|
||||
/// The plugin state was invalid for the attempted operation.
|
||||
/// </summary>
|
||||
InvalidState,
|
||||
|
||||
/// <summary>
|
||||
/// The plugin applicable version is not compativle with the currently running game.
|
||||
/// </summary>
|
||||
InvalidGameVersion,
|
||||
|
||||
/// <summary>
|
||||
/// The plugin API level is not compatible with the currently running Dalamud.
|
||||
/// </summary>
|
||||
InvalidApiLevel,
|
||||
|
||||
/// <summary>
|
||||
/// During loading, the current plugin was marked as disabled.
|
||||
/// </summary>
|
||||
InvalidStateDisabled,
|
||||
|
||||
/// <summary>
|
||||
/// During loading, another plugin was detected with the same internal name.
|
||||
/// </summary>
|
||||
InvalidStateDuplicate,
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue