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