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