GT5-Unofficial/main/java/gregtech/common/render/GT_Renderer_Entity_Arrow.java

24 lines
712 B
Java
Raw Normal View History

2015-06-23 22:29:05 +00:00
package gregtech.common.render;
import cpw.mods.fml.client.registry.RenderingRegistry;
import net.minecraft.client.renderer.entity.RenderArrow;
import net.minecraft.entity.Entity;
import net.minecraft.util.ResourceLocation;
public class GT_Renderer_Entity_Arrow
extends RenderArrow
{
private final ResourceLocation mTexture;
public GT_Renderer_Entity_Arrow(Class aArrowClass, String aTextureName)
{
this.mTexture = new ResourceLocation("gregtech:textures/entity/" + aTextureName + ".png");
RenderingRegistry.registerEntityRenderingHandler(aArrowClass, this);
}
protected ResourceLocation getEntityTexture(Entity p_110775_1_)
{
return this.mTexture;
}
}