Beispiel #1
0
 public bool DeleteProjectTowerTemplates(List <TowerTemplateStorageInfo> templates)
 {
     return(ConfigFileUtils.DeleteTowerTemplates(ConfigFilePath, templates, false));
 }
Beispiel #2
0
 public bool DeleteGeneralTowerTemplates(List <TowerTemplateStorageInfo> templates)
 {
     return(ConfigFileUtils.DeleteTowerTemplates(ConfigFilePath, templates));
 }
Beispiel #3
0
 public bool DeleteProjectTowerTemplate(TowerTemplateStorageInfo template)
 {
     return(ConfigFileUtils.DeleteTowerTemplates(ConfigFilePath, new List <TowerTemplateStorageInfo> {
         template
     }, false));
 }
Beispiel #4
0
 public bool DeleteGeneralTowerTemplate(TowerTemplateStorageInfo template)
 {
     return(ConfigFileUtils.DeleteTowerTemplates(ConfigFilePath, new List <TowerTemplateStorageInfo> {
         template
     }));
 }