Ejemplo n.º 1
0
 //下注成功返回事件
 public override void bet2CallBack(GameDiceBetUpdateWeathDto callBackParam)
 {
     if (callBackParam != null)
     {
         DiceGameMove diceGameMove = MessageManager.GetInstance.GetUIDict <DiceGameMove>();
         UIDicePlane  UIDicePlane  = MessageManager.GetInstance.GetUIDict <UIDicePlane>();
         //及时更改自己的财富
         PlayerCache.loginInfo.gold = callBackParam.residueGold;
         //自己投注金额及财富变更改变
         diceGameMove.SelfBetGoldCount(callBackParam);
         UIDicePlane.BetSucceed(callBackParam);
     }
 }