Code/net/minecraft/network/protocol/game/ClientboundBundleDelimiterP...

11 lines
409 B
Java
Raw Normal View History

2025-07-01 06:20:03 +00:00
package net.minecraft.network.protocol.game;
import net.minecraft.network.protocol.BundleDelimiterPacket;
import net.minecraft.network.protocol.PacketType;
public class ClientboundBundleDelimiterPacket extends BundleDelimiterPacket<ClientGamePacketListener> {
@Override
public PacketType<ClientboundBundleDelimiterPacket> type() {
return GamePacketTypes.CLIENTBOUND_BUNDLE_DELIMITER;
}
}