mhf-server/Mhf.Server/Packet/IHandler.cs
2019-11-24 19:43:35 +08:00

9 lines
138 B
C#

namespace Mhf.Server.Packet
{
public interface IHandler
{
ushort Id { get; }
int ExpectedSize { get; }
}
}