more methods to load plugins

This commit is contained in:
schedpas
2024-04-17 15:05:32 +02:00
parent e91e016f32
commit efb0636312
5 changed files with 110 additions and 19 deletions

View File

@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Pilz.Plugins.Advanced
{
public interface IPluginFeatureProvider<T> where T : PluginFeature
{
static abstract T Instance { get; }
}
}