wangguan
2020-12-15 0d6a2e6d4b9de57a13c2bcb32148e1eb97ef1b1f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;
using System.Collections.Generic;
 
/**
 * 模块,UI逻辑事件处理中心
 * @Author: chenxin
 * @Date: 2020-09-02 17:34:25
 */
namespace KTGMGemClient
{
    public class EventCenter : EventBase
    {
        private EventCenter() { }
        private static EventCenter ins = new EventCenter();
        public static EventCenter Ins { get { return ins; } private set { } }
    }
}