30 lines
857 B
Java
30 lines
857 B
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*
|
|
* Could not load the following classes:
|
|
* org.jspecify.annotations.Nullable
|
|
*/
|
|
package net.minecraft.client.renderer.state;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
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 {
|
|
public @Nullable Identifier texture;
|
|
public final List<MapDecorationRenderState> decorations = new ArrayList<MapDecorationRenderState>();
|
|
|
|
public static class MapDecorationRenderState {
|
|
public @Nullable TextureAtlasSprite atlasSprite;
|
|
public byte x;
|
|
public byte y;
|
|
public byte rot;
|
|
public boolean renderOnFrame;
|
|
public @Nullable Component name;
|
|
}
|
|
}
|
|
|