bingo b面修改

This commit is contained in:
2026-05-08 11:03:00 +08:00
parent ad5920ac6a
commit 5d32fd56f4
1780 changed files with 36187 additions and 73978 deletions
+17 -5
View File
@@ -1,6 +1,7 @@
using System.Collections;
using System.Collections.Generic;
using System.IO;
using Castle.Core.Internal;
using Newtonsoft.Json;
using UnityEngine;
namespace BingoBrain
@@ -32,9 +33,10 @@ namespace BingoBrain
public static void saveDataFunc()
{
if (saveobject == null) return;
string save = JsonConvert.SerializeObject(saveobject);
if (save.IsNullOrEmpty()) return;
if (save == null || save == "") return;
if (File.Exists(jsonFilePath)) File.Delete(jsonFilePath);
File.WriteAllText(jsonFilePath, save);
@@ -161,15 +163,25 @@ namespace BingoBrain
public int look_ad_time;
public int[] dark_Dayref;
public int[] _goldtime;
public MaxPayClass max_pay_object;
// public MaxPayClass max_pay_object;
public List<SaveingPotClass> saveingpot_history = new List<SaveingPotClass>();
public float saveingpot_cash;
public float last_saveingpot_cash;
public long failed_pack_time;
public int three_gift_got_index = 1;
public long last_got_three_gift_time = 0;
public bool is_get_ThreeDaysGift;
//tixian
public int ExchangeProcessMode = -1;
public int CHProcessMode = -1;
public int chout_lv;
public int ch_people;
public float ch_people_1;
public float ch_people_2;
public int _watch_ad_cd;
public float saveingpot_ch;
public float last_saveingpot_ch;
public int ExchangeModeToggle = 1;
}
}