24 lines
560 B
C#
24 lines
560 B
C#
using Pilz.Plugins.Advanced;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SamplePlugin
|
|
{
|
|
internal class SampleFunction : PluginFunction, IPluginFeatureProvider<SampleFunction>
|
|
{
|
|
public static SampleFunction Instance { get; } = new();
|
|
|
|
public SampleFunction() : base()
|
|
{
|
|
}
|
|
|
|
protected override object? ExecuteFunction(PluginFunctionParameter? @params)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|