package net.minecraft.client.renderer.state; import java.util.ArrayList; import java.util.List; import net.fabricmc.fabric.api.client.rendering.v1.FabricRenderState; import net.minecraft.client.renderer.texture.TextureAtlasSprite; import net.minecraft.network.chat.Component; import net.minecraft.resources.Identifier; import org.jspecify.annotations.Nullable; public class MapRenderState implements FabricRenderState { @Nullable public Identifier texture; public final List decorations = new ArrayList(); public static class MapDecorationRenderState implements FabricRenderState { @Nullable public TextureAtlasSprite atlasSprite; public byte x; public byte y; public byte rot; public boolean renderOnFrame; @Nullable public Component name; } }