Ejemplo n.º 1
0
 public PluginsManager()
 {
     RegisteredPlugins = new List <Plugin>();
     Caller            = new PluginsCaller(RegisteredPlugins, this);
 }
Ejemplo n.º 2
0
 public PluginsManager(PluginsCaller Caller)
 {
     RegisteredPlugins = new List <Plugin>();
     this.Caller       = Caller;
 }
Ejemplo n.º 3
0
 public Plugin(PluginsCaller Caller)
 {
     this.Caller  = Caller;
     this.Enabled = true;
 }