Code/net/minecraft/client/renderer/entity/state/EndermanRenderState.java

13 lines
405 B
Java
Raw Normal View History

2025-07-01 06:20:03 +00:00
package net.minecraft.client.renderer.entity.state;
import javax.annotation.Nullable;
import net.minecraft.world.level.block.state.BlockState;
import net.minecraftforge.api.distmarker.Dist;
import net.minecraftforge.api.distmarker.OnlyIn;
@OnlyIn(Dist.CLIENT)
public class EndermanRenderState extends HumanoidRenderState {
public boolean isCreepy;
@Nullable
public BlockState carriedBlock;
}