22 lines
690 B
Java
22 lines
690 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.FelineRenderState;
|
|
import net.minecraft.resources.Identifier;
|
|
import net.minecraft.world.item.DyeColor;
|
|
import org.jspecify.annotations.Nullable;
|
|
|
|
public class CatRenderState
|
|
extends FelineRenderState {
|
|
private static final Identifier DEFAULT_TEXTURE = Identifier.withDefaultNamespace("textures/entity/cat/tabby.png");
|
|
public Identifier texture = DEFAULT_TEXTURE;
|
|
public boolean isLyingOnTopOfSleepingPlayer;
|
|
public @Nullable DyeColor collarColor;
|
|
}
|
|
|