| package protocolsupport.protocol.pipeline; | |
| import io.netty.buffer.ByteBuf; | |
| import io.netty.channel.ChannelHandlerContext; | |
| import net.minecraft.server.v1_9_R2.Packet; | |
| import net.minecraft.server.v1_9_R2.PacketListener; | |
| public interface IPacketEncoder { | |
| public void encode(ChannelHandlerContext ctx, Packet<PacketListener> packet, ByteBuf output) throws Exception; | |
| } |