chenxin
2020-11-19 95ed512ab8ec6ae3fc5bb827cb0e3fe98adc44d3
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 { } }
    }
}