Finish InPacket & OutPacket implementations

This commit is contained in:
P0nk
2021-06-20 21:27:50 +02:00
parent f3faee2e16
commit aaf4b558f3
5 changed files with 24 additions and 26 deletions

View File

@@ -10,7 +10,7 @@ public interface OutPacket extends Packet {
void writeByte(byte value);
void writeByte(int value);
void writeBytes(byte[] value);
void writeShort(short value);
void writeShort(int value);
void writeInt(int value);
void writeLong(long value);
void writeBoolean(boolean value);