Spaces:
Build error
Build error
package net.minecraft.client.renderer.state; | |
import java.util.ArrayList; | |
import java.util.List; | |
import javax.annotation.Nullable; | |
import net.minecraft.client.renderer.texture.TextureAtlasSprite; | |
import net.minecraft.network.chat.Component; | |
import net.minecraft.resources.ResourceLocation; | |
import net.minecraftforge.api.distmarker.Dist; | |
import net.minecraftforge.api.distmarker.OnlyIn; | |
public class MapRenderState { | |
public ResourceLocation texture; | |
public final List<MapRenderState.MapDecorationRenderState> decorations = new ArrayList<>(); | |
public static class MapDecorationRenderState { | |
public TextureAtlasSprite atlasSprite; | |
public byte x; | |
public byte y; | |
public byte rot; | |
public boolean renderOnFrame; | |
public Component name; | |
} | |
} |