mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 03:37:59 +01:00
20 lines
401 B
C#
20 lines
401 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using WinAlfred.Helper;
|
|
using WinAlfred.Plugin;
|
|
|
|
namespace WinAlfred.PluginLoader
|
|
{
|
|
public class CSharpPluginLoader:BasePluginLoader
|
|
{
|
|
private List<IPlugin> plugins = new List<IPlugin>();
|
|
|
|
public override List<IPlugin> LoadPlugin()
|
|
{
|
|
return plugins;
|
|
}
|
|
}
|
|
}
|