/* * Decompiled with CFR 0.152. * * Could not load the following classes: * io.netty.buffer.ByteBuf */ package net.minecraft.network.protocol.game; import io.netty.buffer.ByteBuf; import net.minecraft.network.codec.StreamCodec; import net.minecraft.network.protocol.Packet; import net.minecraft.network.protocol.PacketType; import net.minecraft.network.protocol.game.GamePacketTypes; import net.minecraft.network.protocol.game.ServerGamePacketListener; public class ServerboundConfigurationAcknowledgedPacket implements Packet { public static final ServerboundConfigurationAcknowledgedPacket INSTANCE = new ServerboundConfigurationAcknowledgedPacket(); public static final StreamCodec STREAM_CODEC = StreamCodec.unit(INSTANCE); private ServerboundConfigurationAcknowledgedPacket() { } @Override public PacketType type() { return GamePacketTypes.SERVERBOUND_CONFIGURATION_ACKNOWLEDGED; } @Override public void handle(ServerGamePacketListener listener) { listener.handleConfigurationAcknowledged(this); } @Override public boolean isTerminal() { return true; } }