Пример #1
0
 public void SaveProfile(string profileName)
 {
     if (!Directory.Exists(FolderName))
     {
         Directory.CreateDirectory(FolderName);
     }
     ChangeFileName(profileName);
     JsonIO.Save(SavePath, profileData);
 }
Пример #2
0
 private static void SaveContentManifest()
 {
     JsonIO.Save(manifest, PathUtils.GetLocalPath(content_path, "content.json"));
 }