2023-09-12 13:34:58 +02:00

8 lines
143 B
C#

namespace Core
{
public abstract class PluginInterface
{
public abstract T GetPlugin<T>() where T : IProjectPlugin;
}
}