13 lines
437 B
Java
13 lines
437 B
Java
|
package net.minecraft.client.model;
|
||
|
|
||
|
import net.minecraft.client.model.geom.ModelPart;
|
||
|
import net.minecraft.client.renderer.entity.state.ZombieRenderState;
|
||
|
import net.minecraftforge.api.distmarker.Dist;
|
||
|
import net.minecraftforge.api.distmarker.OnlyIn;
|
||
|
|
||
|
@OnlyIn(Dist.CLIENT)
|
||
|
public class GiantZombieModel extends AbstractZombieModel<ZombieRenderState> {
|
||
|
public GiantZombieModel(ModelPart p_170576_) {
|
||
|
super(p_170576_);
|
||
|
}
|
||
|
}
|