blob: ce36985c276ef9a9c5c99db5b214b0224402b974 [file] [log] [blame] [raw]
package protocolsupport.protocol;
import net.minecraft.server.v1_8_R1.Packet;
import io.netty.buffer.ByteBuf;
import io.netty.channel.ChannelHandlerContext;
public interface PublicPacketEncoder {
public void publicEncode(ChannelHandlerContext ctx, Packet packet, ByteBuf output) throws Exception;
}