This commit is contained in:
Pilzinsel64
2025-11-06 11:59:55 +01:00
parent d4e76dc1a8
commit 42ff61bf91
2 changed files with 3 additions and 2 deletions

View File

@@ -8,5 +8,5 @@ public interface IPluginFeatureProvider
public interface IPluginFeatureProvider<T> : IPluginFeatureProvider where T : PluginFeature, IPluginFeatureProvider<T> public interface IPluginFeatureProvider<T> : IPluginFeatureProvider where T : PluginFeature, IPluginFeatureProvider<T>
{ {
static new abstract T Instance { get; } static new abstract T Instance { get; }
static PluginFeature IPluginFeatureProvider.Instance => Instance; static PluginFeature IPluginFeatureProvider.Instance => T.Instance;
} }

View File

@@ -1,4 +1,5 @@
using System.Reflection; using Pilz.Features.Exceptions;
using System.Reflection;
namespace Pilz.Features; namespace Pilz.Features;