mhf-server/Mhf.Server/Logging/MhfLogType.cs

11 lines
173 B
C#
Raw Normal View History

2019-11-24 19:43:35 +08:00
namespace Mhf.Server.Logging
{
public enum MhfLogType
{
PacketIn = 1,
PacketOut = 2,
PacketUnhandled = 3,
PacketError = 4
}
}