private void OnLoad(ShipConstruct data0, CraftBrowserDialog.LoadType data1)
 {
     if (data1 == CraftBrowserDialog.LoadType.Normal)
     {
         ShipConcerns.Clear();
         SectionConcerns.Clear();
     }
 }
 private void SectionRenamed(string data0, string data1)
 {
     //Since just renaming sections, can easily just change the section name.
     SectionConcerns[data1] = SectionConcerns[data0];
     SectionConcerns.Remove(data0);
 }