correct constructor parameter names for plugin features

This commit is contained in:
Pilzinsel64
2024-07-16 10:14:45 +02:00
parent 8043d1fcf3
commit 4bb72c63b2
7 changed files with 15 additions and 16 deletions

View File

@@ -2,11 +2,11 @@
public abstract class PluginFunction : PluginFeature
{
protected PluginFunction(string functionType, string functionIdentifier) : base(functionType, functionIdentifier)
protected PluginFunction(string type, string identifier) : base(type, identifier)
{
}
protected PluginFunction(string functionType, string functionIdentifier, string? functionName) : base(functionType, functionIdentifier, functionName)
protected PluginFunction(string type, string identifier, string? name) : base(type, identifier, name)
{
}