15 lines
509 B
Java
15 lines
509 B
Java
|
package net.minecraft.client.renderer.entity.state;
|
||
|
|
||
|
import javax.annotation.Nullable;
|
||
|
import net.minecraft.core.Direction;
|
||
|
import net.minecraft.world.entity.decoration.PaintingVariant;
|
||
|
import net.minecraftforge.api.distmarker.Dist;
|
||
|
import net.minecraftforge.api.distmarker.OnlyIn;
|
||
|
|
||
|
@OnlyIn(Dist.CLIENT)
|
||
|
public class PaintingRenderState extends EntityRenderState {
|
||
|
public Direction direction = Direction.NORTH;
|
||
|
@Nullable
|
||
|
public PaintingVariant variant;
|
||
|
public int[] lightCoords = new int[0];
|
||
|
}
|