예제 #1
0
 public Dialog_AddPreferredName()
 {
     this.doCloseButton           = true;
     this.absorbInputAroundWindow = true;
     this.cachedNames             = (from n in (from b in SolidBioDatabase.allBios
                                                select b.name).Concat(PawnNameDatabaseSolid.AllNames())
                                     orderby n.Last descending
                                     select n).ToList <NameTriple>();
 }
 public Dialog_AddPreferredName()
 {
     doCloseButton           = true;
     absorbInputAroundWindow = true;
     cachedNames             = (from n in SolidBioDatabase.allBios.Select((PawnBio b) => b.name).Concat(PawnNameDatabaseSolid.AllNames())
                                orderby n.Last descending
                                select n).ToList();
 }