LynnaLab.PluginManager.PluginManager C# (CSharp) Method

PluginManager() public method

public PluginManager ( PluginCore core, MainWindow window, Type type ) : System
core PluginCore
window MainWindow
type System.Type
return System
        public PluginManager(PluginCore core, MainWindow window, Type type)
        {
            MainWindow = window;
            PluginCore = core;

            pluginType = type;
            plugin = Activator.CreateInstance(type) as Plugin;
            plugin.Init(this);
        }