Advertisement
Guest User

Untitled

a guest
Nov 7th, 2016
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. package thecraft.mod.common;
  2.  
  3. import net.minecraft.client.model.ModelBiped;
  4. import net.minecraft.client.renderer.entity.RenderBiped;
  5. import net.minecraft.entity.EntityLiving;
  6. import net.minecraft.util.ResourceLocation;
  7.  
  8. public class RenderMobdropewilitesworld extends RenderBiped
  9. {
  10. public final ResourceLocation texture = new ResourceLocation(ewifaction.MODID, "textutes/entity/mobdropewilitesworld.png");
  11.  
  12. public RenderMobdropewilitesworld(ModelBiped model, float shadow)
  13. {
  14. super(model, shadow);
  15. }
  16.  
  17. protected ResourceLocation getEntityTexture(EntityLiving living)
  18. {
  19. return this.getMobdropewilitesworld((Mobdropewilitesworld)living);
  20. }
  21. private ResourceLocation getMobdropewilitesworld(Mobdropewilitesworld living)
  22. {
  23. return texture;
  24. }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement