using System.Collections; using System.Collections.Generic; using UnityEngine; namespace XFramework.NetOuter { public interface IUDPHander:INetMsgHandler,INetSender { //发送数据 到指定地址 void SendNetMess(string ip,int port, ProtocolBase protocol); } }