package net.minecraft.world.item.crafting.display; import io.netty.buffer.ByteBuf; import net.minecraft.network.codec.ByteBufCodecs; import net.minecraft.network.codec.StreamCodec; public record RecipeDisplayId(int index) { public static final StreamCodec STREAM_CODEC = StreamCodec.composite( ByteBufCodecs.VAR_INT, RecipeDisplayId::index, RecipeDisplayId::new ); }