Example #1
0
 public ModuleContainer(Module plugin, bool dll)
 {
     Contract.Requires(plugin != null);
     this.Plugin = plugin;
     this.Initialized = false;
     this.Dll = dll;
 }
Example #2
0
 public ModuleContainer(Module plugin) : this(plugin, true)
 {
     Contract.Requires(plugin != null);
 }
Example #3
0
 public ModuleContainer(Module plugin) : this(plugin, true)
 {
     Contract.Requires(plugin != null);
 }