HaoYueNet/Simple/ServerCore/Event/EEvent.cs

10 lines
157 B
C#
Raw Normal View History

2023-12-14 18:15:04 +08:00
namespace ServerCore.Event
2023-05-25 18:04:01 +08:00
{
public enum EEvent
{
// 添加你自己需要的事件类型
OnUserJoin,
OnUserLeave
}
}