10 lines
316 B
Java
10 lines
316 B
Java
|
package net.minecraft.client.renderer.entity.state;
|
||
|
|
||
|
import net.minecraftforge.api.distmarker.Dist;
|
||
|
import net.minecraftforge.api.distmarker.OnlyIn;
|
||
|
|
||
|
@OnlyIn(Dist.CLIENT)
|
||
|
public class HoglinRenderState extends LivingEntityRenderState {
|
||
|
public int attackAnimationRemainingTicks;
|
||
|
public boolean isConverting;
|
||
|
}
|