using UnityEngine; using System.Collections; using AX.NetworkSystem; using AX.Network.Protocols; public class EXAM_SAVE_REPLY : NetworkMessageBehaviour { protected override void Execute(BinaryMessage message) { var exam = message.Body.Deserialize(); var control = GetComponent(); control.ResetPageData(); } }