| 10 | import net.minecraft.resources.ResourceLocation; |
| 11 | |
| 12 | public class ThiefModel extends HumanoidModel<ThiefEntity> { |
| 13 | |
| 14 | public static final String BODY = "body"; |
| 15 | |
| 16 | public static ModelLayerLocation THIEF_LAYER = new ModelLayerLocation(new ResourceLocation(TutorialV3.MODID, "thief"), BODY); |
| 17 | |
| 18 | public static LayerDefinition createBodyLayer() { |
| 19 | MeshDefinition meshdefinition = createMesh(CubeDeformation.NONE, 0.6f); |
| 20 | return LayerDefinition.create(meshdefinition, 64, 32); |
| 21 | } |
| 22 | |
| 23 | public ThiefModel(ModelPart part) { |
| 24 | super(part); |
| 25 | } |
| 26 | } |
nothing calls this directly
no outgoing calls
no test coverage detected