diff --git a/OwnChar.Plugins/OwnChar.Plugins.csproj b/OwnChar.Plugins/OwnChar.Plugins.csproj index 8f96597..962c60c 100644 --- a/OwnChar.Plugins/OwnChar.Plugins.csproj +++ b/OwnChar.Plugins/OwnChar.Plugins.csproj @@ -7,7 +7,7 @@ - + diff --git a/OwnChar.Plugins/OwnCharPlugins.cs b/OwnChar.Plugins/OwnCharPlugins.cs index 881edf3..efc2b25 100644 --- a/OwnChar.Plugins/OwnCharPlugins.cs +++ b/OwnChar.Plugins/OwnCharPlugins.cs @@ -1,8 +1,10 @@ using Pilz.Plugins; +using System.Reflection; namespace OwnChar.Plugins { - public class OwnCharPlugins : PluginManager + public class OwnCharPlugins : PluginManager> { + public static OwnCharPlugins Instance { get; } = new(); } } diff --git a/OwnChar.Plugins/PluginRuntimeInfo.cs b/OwnChar.Plugins/PluginRuntimeInfo.cs deleted file mode 100644 index 97d65ad..0000000 --- a/OwnChar.Plugins/PluginRuntimeInfo.cs +++ /dev/null @@ -1,13 +0,0 @@ -using Pilz.Plugins; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace OwnChar.Plugins -{ - public class PluginRuntimeInfo : PluginRuntimeInfo - { - } -}