package net.glowstone.net.codec.play.entity; import com.flowpowered.network.Codec; import io.netty.buffer.ByteBuf; import net.glowstone.net.message.play.entity.AttachEntityMessage; import java.io.IOException; public final class AttachEntityCodec implements Codec<AttachEntityMessage> { @Override public AttachEntityMessage decode(ByteBuf buf) throws IOException { int attached = buf.readInt(); int holding = buf.readInt(); return new AttachEntityMessage(attached, holding); } @Override public ByteBuf encode(ByteBuf buf, AttachEntityMessage message) throws IOException { buf.writeInt(message.getAttached()); buf.writeInt(message.getHolding()); return buf; } }