13 lines
556 B
Java
13 lines
556 B
Java
|
package net.minecraft.client.renderer.entity.state;
|
||
|
|
||
|
import net.minecraft.world.entity.AnimationState;
|
||
|
import net.minecraftforge.api.distmarker.Dist;
|
||
|
import net.minecraftforge.api.distmarker.OnlyIn;
|
||
|
|
||
|
@OnlyIn(Dist.CLIENT)
|
||
|
public class ArmadilloRenderState extends LivingEntityRenderState {
|
||
|
public boolean isHidingInShell;
|
||
|
public final AnimationState rollOutAnimationState = new AnimationState();
|
||
|
public final AnimationState rollUpAnimationState = new AnimationState();
|
||
|
public final AnimationState peekAnimationState = new AnimationState();
|
||
|
}
|