| | |
| | | for(int i = 0; i < helpPointShoplist.Count; i++)
|
| | | {
|
| | | var shopId = helpPointShoplist[i];
|
| | | StoreConfig storeConfig = Config.Instance.Get<StoreConfig>(shopId);
|
| | | StoreConfig storeConfig = StoreConfig.Get(shopId);
|
| | | int remainNum = 0;
|
| | | ulong haveMoney = UIHelper.GetMoneyCnt(storeConfig.MoneyType);
|
| | | bool isEnoughMoney = haveMoney >= (ulong)storeConfig.MoneyNumber ? true : false;
|
| | |
| | |
|
| | | private void UpdateHelpPointShop(int shopId)
|
| | | {
|
| | | StoreConfig storeConfig = Config.Instance.Get<StoreConfig>(shopId);
|
| | | StoreConfig storeConfig = StoreConfig.Get(shopId);
|
| | | if (storeConfig == null) return;
|
| | |
|
| | | if(!IsAlreadPush(shopId))
|