package net.minecraft.client.renderer.entity.state; import net.minecraft.world.entity.Display.RenderState; import org.jspecify.annotations.Nullable; public abstract class DisplayEntityRenderState extends EntityRenderState { @Nullable public RenderState renderState; public float interpolationProgress; public float entityYRot; public float entityXRot; public float cameraYRot; public float cameraXRot; public abstract boolean hasSubState(); }