1
0
mirror of https://github.com/soarqin/DSP_Mods.git synced 2025-12-08 23:33:33 +08:00

work in progress

This commit is contained in:
2025-12-02 00:10:02 +08:00
parent 29ee32b11b
commit b2c04c1dff
4 changed files with 178 additions and 84 deletions

View File

@@ -39,7 +39,7 @@ public class UXAssist : BaseUnityPlugin, IModCanSave
{
w.Write(ModSaveVersion);
FactoryPatch.Export(w);
PersistPatch.ExportClusterUploadResults(w);
UIFunctions.ExportClusterUploadResults(w);
}
public void Import(BinaryReader r)
@@ -49,7 +49,7 @@ public class UXAssist : BaseUnityPlugin, IModCanSave
FactoryPatch.Import(r);
if (version > 1)
{
PersistPatch.ImportClusterUploadResults(r);
UIFunctions.ImportClusterUploadResults(r);
}
}