Example #1
0
        public override void betAll2CallBack(Game1BetAllResponseDto callBackParam)
        {
            UIZJHPanel zjhPanel = MessageManager.GetInstance.GetUIDict <UIZJHPanel>();

            if (zjhPanel == null)
            {
                zjhPanel = MessageManager.GetInstance.GetUIDict <CheatZjhPanel>();
            }
            zjhPanel.AllInServerResponse(callBackParam.betGold);
            zjhPanel.SetTotalGoldTxt(callBackParam.roomGld);
            zjhPanel.IsLimitTTL = true;
            if (PlayerCache.roomPlayerObjDic.ContainsKey(PlayerCache.loginInfo.uid))
            {
                PlayerCache.roomPlayerObjDic[PlayerCache.loginInfo.uid].BetSuccess(callBackParam.holdGold);
            }

            if (callBackParam.nextOperationUid != -1)
            {
                PlayerCache.roomPlayerObjDic[callBackParam.nextOperationUid].PlayeProgressAni();
            }
        }
Example #2
0
 /// <summary>
 /// 慹掋 ----> <<betAll();ć›žè°ƒ>>
 /// </summary>
 public virtual void betAll2CallBack(Game1BetAllResponseDto callBackParam)
 {
 }