21 lines
595 B
Java
21 lines
595 B
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*
|
|
* Could not load the following classes:
|
|
* org.jspecify.annotations.Nullable
|
|
*/
|
|
package net.minecraft.client.renderer.entity.state;
|
|
|
|
import net.minecraft.client.renderer.entity.state.EntityRenderState;
|
|
import net.minecraft.core.Direction;
|
|
import net.minecraft.world.entity.decoration.PaintingVariant;
|
|
import org.jspecify.annotations.Nullable;
|
|
|
|
public class PaintingRenderState
|
|
extends EntityRenderState {
|
|
public Direction direction = Direction.NORTH;
|
|
public @Nullable PaintingVariant variant;
|
|
public int[] lightCoordsPerBlock = new int[0];
|
|
}
|
|
|