AxibugEmuOnline/AxibugEmuOnline.Server/Event/EEvent.cs

10 lines
169 B
C#
Raw Normal View History

2024-06-28 17:43:55 +08:00
namespace AxibugEmuOnline.Server.Event
{
public enum EEvent
{
// 添加你自己需要的事件类型
OnUserJoin,
OnUserLeave
}
}