1
2
3
4
5
6
7
8
9
10
11
12
13
14
| /**
| * 消息事件 例:SocketEvent.Ins.Add<Google.Protobuf.IMessage>((int)Opcode.LoginS2C, LoginS2C);
| * @Author: chenxin
| * @Date: 2020-09-02 17:03:27
| */
| namespace KTGMGemClient
| {
| public sealed class SocketEvent : EventBase
| {
| private SocketEvent() { }
| private static SocketEvent ins = new SocketEvent();
| public static SocketEvent Ins { get { return ins; } private set { } }
| }
| }
|
|