All Downloads are FREE. Search and download functionalities are using the official Maven repository.

typescript.IProtocolRegistration.ts Maven / Gradle / Ivy

Go to download

zfoo protocol is binary serialization framework for Java/C++/js/ts/C#/Go/Lua/GDScript/Python

The newest version!
import IByteBuffer from "./IByteBuffer";

interface IProtocolRegistration {
    protocolId(): number;

    write(buffer: IByteBuffer, packet: T | null): void;

    read(buffer: IByteBuffer): T | null;
}

export default IProtocolRegistration;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy