コード例 #1
0
 public static void OnSave()
 {
     if (Randomizer.Sync)
     {
         RandomizerSyncManager.onSave();
     }
     RandomizerBonusSkill.OnSave();
 }
コード例 #2
0
 // Token: 0x06003540 RID: 13632 RVA: 0x000D9724 File Offset: 0x000D7924
 public void PerformSave()
 {
     if (!this.CanPerformSave())
     {
         return;
     }
     if (Randomizer.Sync)
     {
         RandomizerSyncManager.onSave();
     }
     SaveSlotsManager.CurrentSaveSlot.FillData();
     SaveSlotsManager.BackupIndex = -1;
     this.SaveToFile(this.CurrentSaveFilePath);
     if (Recorder.IsRecordering)
     {
         Recorder.Instance.OnPerformSave();
     }
 }