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