mirror of
https://github.com/tiennm99/zfoo.git
synced 2026-05-21 04:25:00 +00:00
12 lines
224 B
C#
12 lines
224 B
C#
namespace CsProtocol.Buffer
|
|
{
|
|
public interface IProtocolRegistration
|
|
{
|
|
short ProtocolId();
|
|
|
|
void Write(ByteBuffer buffer, IPacket packet);
|
|
|
|
IPacket Read(ByteBuffer buffer);
|
|
|
|
}
|
|
} |