minecraft-src/net/minecraft/world/item/crafting/display/RecipeDisplayId.java
2025-07-04 02:00:41 +03:00

11 lines
399 B
Java

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<ByteBuf, RecipeDisplayId> STREAM_CODEC = StreamCodec.composite(
ByteBufCodecs.VAR_INT, RecipeDisplayId::index, RecipeDisplayId::new
);
}