Example #1
0
        public static IClientPlugin[] LoadClientPlugIns()
        {
            var dllLoader = new DllLoader();
            var plugins   = dllLoader.LoadClientDlls(GetDllsPath(AppDomain.CurrentDomain.BaseDirectory));

            return(plugins);
        }
Example #2
0
        public static IServerPlugin[] LoadServerPlugInsExternal(string path)
        {
            var dllLoader = new DllLoader();
            var plugins   = dllLoader.LoadServerDlls(GetDllsPath(path));

            return(plugins);
        }
Example #3
0
 public static IServerPlugin[] LoadServerPlugInsExternal(string path)
 {
     var dllLoader = new DllLoader();
     var plugins = dllLoader.LoadServerDlls(GetDllsPath(path));
     return plugins;
 }
Example #4
0
 public static IServerPlugin[] LoadServerPlugIns()
 {
     var dllLoader = new DllLoader();
     var plugins = dllLoader.LoadServerDlls(GetDllsPath(AppDomain.CurrentDomain.BaseDirectory));
     return plugins;
 }