コード例 #1
0
ファイル: ModuleContainer.cs プロジェクト: balu92/Fougerite
 public ModuleContainer(Module plugin, bool dll)
 {
     Contract.Requires(plugin != null);
     this.Plugin = plugin;
     this.Initialized = false;
     this.Dll = dll;
 }
コード例 #2
0
ファイル: ModuleContainer.cs プロジェクト: balu92/Fougerite
 public ModuleContainer(Module plugin) : this(plugin, true)
 {
     Contract.Requires(plugin != null);
 }
コード例 #3
0
ファイル: ModuleContainer.cs プロジェクト: balu92/Fougerite
 public ModuleContainer(Module plugin) : this(plugin, true)
 {
     Contract.Requires(plugin != null);
 }