diff --git a/Dalamud/Plugin/Internal/Types/PluginOperationResult.cs b/Dalamud/Plugin/Internal/Types/PluginOperationResult.cs deleted file mode 100644 index 9ac1db611..000000000 --- a/Dalamud/Plugin/Internal/Types/PluginOperationResult.cs +++ /dev/null @@ -1,57 +0,0 @@ -using System; - -namespace Dalamud.Plugin.Internal.Types -{ - /// - /// This represents the result of a an operation taken against a plugin. - /// Loading, unloading, installation, etc. - /// - internal enum PluginOperationResult - { - /// - /// The result is unknown. Should not be used. - /// - [Obsolete("Do not use this", error: true)] - Unknown, - - /// - /// The result is pending. Take a seat and wait. - /// - Pending, - - /// - /// The operation was successful. - /// - Success, - - /// - /// During the plugin operation, an unexpected error occurred. - /// - UnknownError, - - /// - /// The plugin state was invalid for the attempted operation. - /// - InvalidState, - - /// - /// The plugin applicable version is not compativle with the currently running game. - /// - InvalidGameVersion, - - /// - /// The plugin API level is not compatible with the currently running Dalamud. - /// - InvalidApiLevel, - - /// - /// During loading, the current plugin was marked as disabled. - /// - InvalidStateDisabled, - - /// - /// During loading, another plugin was detected with the same internal name. - /// - InvalidStateDuplicate, - } -}