Example #1
0
 public MCMHost(string Label, ModConfigurationMenu worker)
 {
     this.Label             = Label;
     this.worker            = worker;
     this._key              = "";
     this.OpenedThisSession = false;
 }
Example #2
0
 public MCMHost()
 {
     this.Label             = "?";
     this.worker            = null;
     this._key              = "";
     this.OpenedThisSession = false;
 }
Example #3
0
 public Window_ModConfigurationMenu(ModConfigurationMenu selectedMenu)
 {
     cTor_Common();
     this.SelectedHost = filteredHosts.Find(host => host.worker == selectedMenu);
 }