using Lua; namespace AIStudio.Tools.PluginSystem; /// /// Represents a plugin that could not be loaded. /// /// The Lua state that the plugin was loaded into. /// The error message that occurred while parsing the plugin. public sealed class NoPlugin(LuaState state, string parsingError) : PluginBase(state, PluginType.NONE, parsingError);