Example #1
0
        private void OnTriggerGiftChange()
        {
            List <TriggerGiftVo> giftList = GlobalData.RandomEventModel.GiftList;

            if (giftList == null || giftList.Count == 0)
            {
                view.ChangeTriggerGift(false);
            }
            else
            {
                view.ChangeTriggerGift(true, GlobalData.RandomEventModel.GiftCount, giftList[0].MaturityTime);
            }
        }