| | |
| | | LocalSave.SetBool(GetCallSkipKey(cfgID, startDate, endDate), value); |
| | | } |
| | | |
| | | private string GetCallMoneyToggleKey(int cfgID, OperationDate startDate, OperationDate endDate) |
| | | { |
| | | return string.Concat("HeroReturnManager_CallMoneyToggle_", cfgID, "_", ToInt(startDate), "_", ToInt(endDate), "_", PlayerDatas.Instance.PlayerId); |
| | | } |
| | | |
| | | public bool LoadCallMoneyToggleData(int cfgID, OperationDate startDate, OperationDate endDate) |
| | | { |
| | | return LocalSave.GetBool(GetCallMoneyToggleKey(cfgID, startDate, endDate)); |
| | | } |
| | | |
| | | public void SaveCallMoneyToggleData(int cfgID, OperationDate startDate, OperationDate endDate, bool value) |
| | | { |
| | | LocalSave.SetBool(GetCallMoneyToggleKey(cfgID, startDate, endDate), value); |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 当前招募选中的武将ID |
| | | /// </summary> |