14 lines
588 B
Java
14 lines
588 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 CreakingRenderState extends LivingEntityRenderState {
|
||
|
public final AnimationState invulnerabilityAnimationState = new AnimationState();
|
||
|
public final AnimationState attackAnimationState = new AnimationState();
|
||
|
public final AnimationState deathAnimationState = new AnimationState();
|
||
|
public boolean eyesGlowing;
|
||
|
public boolean canMove;
|
||
|
}
|