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