package net.minecraft.network.protocol.common; import io.netty.buffer.ByteBuf; import net.minecraft.network.codec.StreamCodec; import net.minecraft.network.protocol.Packet; import net.minecraft.network.protocol.PacketType; public class ClientboundClearDialogPacket implements Packet { public static final ClientboundClearDialogPacket INSTANCE = new ClientboundClearDialogPacket(); public static final StreamCodec STREAM_CODEC = StreamCodec.unit(INSTANCE); private ClientboundClearDialogPacket() { } @Override public PacketType type() { return CommonPacketTypes.CLIENTBOUND_CLEAR_DIALOG; } public void handle(ClientCommonPacketListener clientCommonPacketListener) { clientCommonPacketListener.handleClearDialog(this); } }