Spaces:
Build error
Build error
File size: 892 Bytes
d46f4a3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
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;
@OnlyIn(Dist.CLIENT)
public class MapRenderState {
@Nullable
public ResourceLocation texture;
public final List<MapRenderState.MapDecorationRenderState> decorations = new ArrayList<>();
@OnlyIn(Dist.CLIENT)
public static class MapDecorationRenderState {
@Nullable
public TextureAtlasSprite atlasSprite;
public byte x;
public byte y;
public byte rot;
public boolean renderOnFrame;
@Nullable
public Component name;
}
} |