using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Assets.Scripts.Tools.EventMsgCenter { class BaseSend where MsgCenter : class, new() { private Dictionary> _broadcastTable = new Dictionary>(); public void BaseRegisterMsg(EventType e, BroadcastCallBack callback, bool addfirst = false) { } public void BaseUnRegisterMsg(EventType e, BroadcastCallBack callback) { } public void BaseUnRegisterAllMsg(EventType e) { } public void BaseUnRegisterAllMsg() { } public void BaseSendMsg(EventType e, params object[] objs) { } } }