summaryrefslogtreecommitdiff
path: root/EventMsgCenter/EventMsgCenter.cs
blob: 995e6f5365c20a2fd5697671e55a74f9aecce7c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Assets.Scripts.Tools.EventMsgCenter
{
    public enum Events
    {

    }

    class EventMsgCenter : BaseSend<Events, EventMsgCenter>
    {
        public void RegisterMsg(Events e, BroadcastCallBack callback, bool addfirst)
        {
            BaseRegisterMsg(e, callback, addfirst);
        }

        public void UnRegisterMsg(Events e, BroadcastCallBack callback)
        {
            BaseUnRegisterMsg(e, callback); 
        }

        public void UnRegisterAllMsg(Events e)
        {
            BaseUnRegisterAllMsg(e);
        }

        public void unRegisterAllMsg()
        {
            BaseUnRegisterAllMsg();
        }
    }
}