Esempio n. 1
0
 public static bool Exists(string saveName)
 {
     return(SaveLoad.Exists(saveName, SavePath, Postfix));
 }
Esempio n. 2
0
 public static Map Load(string saveName)
 {
     return(SaveLoad.Load <Map>(saveName, SavePath, Postfix));
 }
Esempio n. 3
0
 public static bool Remove(Map map)
 {
     return(SaveLoad.RemoveFile(map.Name, SavePath, Postfix));
 }
Esempio n. 4
0
 public static List <Map> LoadAll()
 {
     return(SaveLoad.LoadAll <Map>(SavePath, Postfix));
 }
Esempio n. 5
0
 public static bool Save(Map map)
 {
     return(SaveLoad.CreateFile(map, map.Name, SavePath, Postfix));
 }