17 lines
359 B
Java
17 lines
359 B
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*/
|
|
package net.minecraft.client.model;
|
|
|
|
import com.mojang.blaze3d.vertex.PoseStack;
|
|
import net.minecraft.client.model.geom.ModelPart;
|
|
|
|
public interface HeadedModel {
|
|
public ModelPart getHead();
|
|
|
|
default public void translateToHead(PoseStack poseStack) {
|
|
this.getHead().translateAndRotate(poseStack);
|
|
}
|
|
}
|
|
|