Beispiel #1
0
    void GoldReadySuc(LocalNotification e)
    {
        ArgsPlayerList args = e.param as ArgsPlayerList;

        if (args != null)
        {
            RefreshOtherPlayerReadyStatus(args.playerIdList);
        }
    }
Beispiel #2
0
    void GoldReadySuc(LocalNotification e)
    {
        ArgsPlayerList args = e.param as ArgsPlayerList;

        if (args != null && args.playerIdList.Contains(PlayerInfo.Instance.mPlayerPid))
        {
            SetGoldReadyStatus(true);
        }
    }
Beispiel #3
0
    void GoldReadySuc(LocalNotification e)
    {
        ArgsPlayerList args = e.param as ArgsPlayerList;

        if (args != null)
        {
            if (args.playerIdList.Contains(PlayerInfo.Instance.mPlayerPid))
            {
                RefreshGoldData(false);
            }

            RefreshOtherPlayerReadyStatus(args.playerIdList);
        }
    }