/* * Decompiled with CFR 0.152. * * Could not load the following classes: * org.jspecify.annotations.Nullable */ package net.minecraft.client.gui.render.state; import com.mojang.blaze3d.pipeline.RenderPipeline; import com.mojang.blaze3d.vertex.VertexConsumer; import net.minecraft.client.gui.navigation.ScreenRectangle; import net.minecraft.client.gui.render.TextureSetup; import net.minecraft.client.gui.render.state.ScreenArea; import org.jspecify.annotations.Nullable; public interface GuiElementRenderState extends ScreenArea { public void buildVertices(VertexConsumer var1); public RenderPipeline pipeline(); public TextureSetup textureSetup(); public @Nullable ScreenRectangle scissorArea(); }