mirror of
https://github.com/sebastian-heinz/mhf-server.git
synced 2025-04-03 13:28:30 +08:00
11 lines
173 B
C#
11 lines
173 B
C#
namespace Mhf.Server.Logging
|
|
{
|
|
public enum MhfLogType
|
|
{
|
|
PacketIn = 1,
|
|
PacketOut = 2,
|
|
PacketUnhandled = 3,
|
|
PacketError = 4
|
|
}
|
|
}
|