11 lines
332 B
Java
11 lines
332 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 WitchRenderState extends HoldingEntityRenderState {
|
||
|
public int entityId;
|
||
|
public boolean isHoldingItem;
|
||
|
public boolean isHoldingPotion;
|
||
|
}
|