示例#1
0
    /******* 处理服务器的通知***************/
    public void HandleResponse(FirstDealResponse notify)
    {
        Dictionary <string, string[]> cardsDict = notify.cardsDict;
        Dictionary <string, int[]>    betsDict  = notify.betsDict;
        int roundNo = notify.roundNo;

        gamePlayController.game.currentRoundNo = roundNo;
        gamePlayController.PrepareForNewRound();
        HandleResponse(cardsDict, betsDict);
    }