Beispiel #1
0
 void saveMapFromXML()
 {
     MapSaveLoad.Save(MapSaveLoad.CreateMapContainer(map), "map2");
     SavingMap = "map2";
 }
 void saveMapToXml()
 {
     MapSaveLoad.Save(MapSaveLoad.CreateMapContainer(map), "map.xml");
 }
Beispiel #3
0
 public void UISaveMap(string s)
 {
     MapSaveLoad.Save(MapSaveLoad.CreateMapContainer(map), s);
 }
Beispiel #4
0
 void saveMapToXml(string s)
 {
     MapSaveLoad.Save(MapSaveLoad.CreateMapContainer(map), s);
 }
Beispiel #5
0
 public void saveMapToXml(string nome)
 {
     MapSaveLoad.Save(MapSaveLoad.CreateMapContainer(tabuleiro, unidadesNoTabuleiro, linhas, colunas), nome + ".xml");
 }