AI-Studio/app/MindWork AI Studio/Tools/PluginSystem/NoPlugin.cs

9 lines
355 B
C#
Raw Normal View History

2025-03-14 20:56:55 +00:00
using Lua;
namespace AIStudio.Tools.PluginSystem;
/// <summary>
/// Represents a plugin that could not be loaded.
/// </summary>
/// <param name="parsingError">The error message that occurred while parsing the plugin.</param>
2025-03-21 19:31:59 +00:00
public sealed class NoPlugin(string parsingError) : PluginBase(string.Empty, LuaState.Create(), PluginType.NONE, parsingError);