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

13 lines
390 B
Java
Raw Normal View History

2025-07-01 06:20:03 +00:00
package net.minecraft.client.renderer.entity.state;
import net.minecraftforge.api.distmarker.Dist;
import net.minecraftforge.api.distmarker.OnlyIn;
@OnlyIn(Dist.CLIENT)
public class BeeRenderState extends LivingEntityRenderState {
public float rollAmount;
public boolean hasStinger = true;
public boolean isOnGround;
public boolean isAngry;
public boolean hasNectar;
}