blob: fea9a0fea1003a3794d1406c183a03454c5c13d1 [file] [log] [blame] [raw]
package protocolsupport.protocol;
import io.netty.buffer.ByteBuf;
import io.netty.channel.ChannelHandlerContext;
import java.util.List;
public interface PublicPacketDecoder {
public void publicDecode(ChannelHandlerContext ctx, ByteBuf input, List<Object> list) throws Exception;
}