예제 #1
0
    void HistoryAck(NetMsg msg)
    {
        Debug.Log("MsgHistory11110返回");
        MsgHistory11110 data = (MsgHistory11110)msg;

        Debug.Log(data.Result);
        if (data.Result == 0)
        {
            BattleControler.Instance.battleModal.battleView.gameHistoryPanel.gameObject.SetActive(true);
            GameHistory.Instance.InitList(data.recordList);
        }
    }
예제 #2
0
    public void GetRecordAsk()
    {
        MsgHistory11110 msg = new MsgHistory11110();

        Client.Instance.SendMessage(msg);
    }