Files
App/OwnChar.App.Desktop/AppPlugin.cs

22 lines
441 B
C#

using Pilz.Plugins;
using Pilz.Plugins.Advanced;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
namespace OwnChar.App.Desktop
{
public class AppPlugin : IPlugin
{
public string Name => "OwnChar Desktop App";
public AppPlugin()
{
PluginFeatureController.Instance.RegisterAllOwn();
}
}
}