11 lines
254 B
C#
11 lines
254 B
C#
using Pilz.Plugins;
|
|
using System.Reflection;
|
|
|
|
namespace OwnChar.Plugins
|
|
{
|
|
public class OwnCharPlugins : PluginManager<IOwnCharPlugin, PluginRuntimeInfo<IOwnCharPlugin>>
|
|
{
|
|
public static OwnCharPlugins Instance { get; } = new();
|
|
}
|
|
}
|