mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2025-03-28 14:27:44 +01:00
23 lines
710 B
Java
23 lines
710 B
Java
package com.minelittlepony.render.ponies;
|
|
|
|
import com.minelittlepony.model.PMAPI;
|
|
import com.minelittlepony.render.RenderPonyMob;
|
|
|
|
import net.minecraft.client.renderer.entity.RenderManager;
|
|
import net.minecraft.entity.monster.EntityPigZombie;
|
|
import net.minecraft.util.ResourceLocation;
|
|
|
|
public class RenderPonyPigman extends RenderPonyMob<EntityPigZombie> {
|
|
|
|
private static final ResourceLocation PIGMAN = new ResourceLocation("minelittlepony", "textures/entity/zombie/zombie_pigman_pony.png");
|
|
|
|
public RenderPonyPigman(RenderManager manager) {
|
|
super(manager, PMAPI.zombie);
|
|
}
|
|
|
|
@Override
|
|
public ResourceLocation getTexture(EntityPigZombie entity) {
|
|
return PIGMAN;
|
|
}
|
|
|
|
}
|