summaryrefslogtreecommitdiff
path: root/EventMsgCenter/BaseSend.cs
diff options
context:
space:
mode:
Diffstat (limited to 'EventMsgCenter/BaseSend.cs')
-rw-r--r--EventMsgCenter/BaseSend.cs39
1 files changed, 0 insertions, 39 deletions
diff --git a/EventMsgCenter/BaseSend.cs b/EventMsgCenter/BaseSend.cs
deleted file mode 100644
index b240e57..0000000
--- a/EventMsgCenter/BaseSend.cs
+++ /dev/null
@@ -1,39 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-
-namespace Assets.Scripts.Tools.EventMsgCenter
-{
- class BaseSend <EventType, MsgCenter>
- where MsgCenter : class, new()
- {
- private Dictionary<EventType, LinkedList<BroadcastCallBack>> _broadcastTable = new Dictionary<EventType, LinkedList<BroadcastCallBack>>();
-
- 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)
- {
-
- }
-
- }
-}