Code/net/minecraft/client/renderer/entity/state/CatRenderState.java

16 lines
636 B
Java
Raw Permalink Normal View History

2025-07-01 06:20:03 +00:00
package net.minecraft.client.renderer.entity.state;
import javax.annotation.Nullable;
import net.minecraft.resources.ResourceLocation;
import net.minecraft.world.item.DyeColor;
import net.minecraftforge.api.distmarker.Dist;
import net.minecraftforge.api.distmarker.OnlyIn;
@OnlyIn(Dist.CLIENT)
public class CatRenderState extends FelineRenderState {
private static final ResourceLocation DEFAULT_TEXTURE = ResourceLocation.withDefaultNamespace("textures/entity/cat/tabby.png");
public ResourceLocation texture = DEFAULT_TEXTURE;
public boolean isLyingOnTopOfSleepingPlayer;
@Nullable
public DyeColor collarColor;
}