HaoYueTunnel/ClientCore/Event/EEvent.cs

25 lines
438 B
C#
Raw Normal View History

2023-05-25 18:30:22 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ClientCore.Event
{
public enum EEvent
{
// 添加你自己需要的事件类型
2023-06-15 15:45:58 +08:00
UserLogin,
2023-05-25 18:30:22 +08:00
UserJoin,
UserLeave,
OnChatMsg,
2023-06-15 15:45:58 +08:00
//打洞流程
TcpTunnelHelloResp,
//连接管理
OnSocketConnect,
OnSocketDisconnect,
2023-05-25 18:30:22 +08:00
}
}