using UnityEngine; using System.Collections; using System.Collections.Generic; using AX.NetworkSystem; using AX.Network.Protocols; using AX.MessageSystem; //public struct QuestionPageReplyPair //{ // public int currentPage; // public int numberEachPage; // public int pageCount; // public List questionList; //} public class QUESTION_PAGE_REPLY : NetworkMessageBehaviour { protected override void Execute(BinaryMessage message) { var pair = message.Body.Deserialize>(); MessageDispatcher.SendMessage("QUESTION_PAGE_REFRESH", pair); } }