16 lines
613 B
Java
16 lines
613 B
Java
package net.minecraft.client.renderer.entity.state;
|
|
|
|
import net.fabricmc.api.EnvType;
|
|
import net.fabricmc.api.Environment;
|
|
import net.minecraft.resources.ResourceLocation;
|
|
import net.minecraft.world.item.DyeColor;
|
|
import org.jetbrains.annotations.Nullable;
|
|
|
|
@Environment(EnvType.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;
|
|
}
|