16 lines
274 B
C#
16 lines
274 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ServerCore.Event
|
|
{
|
|
public enum EEvent
|
|
{
|
|
// 添加你自己需要的事件类型
|
|
OnUserJoin,
|
|
OnUserLeave
|
|
}
|
|
}
|