mhf-server/Mhf.Server/Packet/IHandler.cs

9 lines
138 B
C#
Raw Permalink Normal View History

2019-11-24 19:43:35 +08:00
namespace Mhf.Server.Packet
{
public interface IHandler
{
ushort Id { get; }
int ExpectedSize { get; }
}
}