mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-05-03 09:39:47 +00:00
10 lines
424 B
C#
10 lines
424 B
C#
using Lua;
|
|
|
|
namespace AIStudio.Tools.PluginSystem;
|
|
|
|
/// <summary>
|
|
/// Represents a plugin that could not be loaded.
|
|
/// </summary>
|
|
/// <param name="state">The Lua state that the plugin was loaded into.</param>
|
|
/// <param name="parsingError">The error message that occurred while parsing the plugin.</param>
|
|
public sealed class NoPlugin(LuaState state, string parsingError) : PluginBase(state, PluginType.NONE, parsingError); |