NoSugarNet/NoSugarNet.ServerCore/Event/EEvent.cs
2024-01-16 18:04:15 +08:00

10 lines
157 B
C#

namespace ServerCore.Event
{
public enum EEvent
{
// 添加你自己需要的事件类型
OnUserJoin,
OnUserLeave
}
}