Advertisement
Guest User

RenderRodeur.java

a guest
Aug 23rd, 2013
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. package mod.infection.entitees;
  2.  
  3. import net.minecraft.client.model.ModelBiped;
  4. import net.minecraft.client.renderer.entity.RenderBiped;
  5. import net.minecraft.entity.Entity;
  6. import net.minecraft.util.ResourceLocation;
  7.  
  8. public class RenderRodeur extends RenderBiped {
  9.  
  10. protected static final ResourceLocation texture = new ResourceLocation("infection:ModelZombie.png");
  11.  
  12. public RenderRodeur(ModelBiped biped, float tailleOmbre)
  13. {
  14. super(biped, tailleOmbre);
  15. }
  16.  
  17. protected ResourceLocation func_110870_a(EntityRodeur entity)
  18. {
  19. return texture;
  20. }
  21.  
  22. @Override
  23. protected ResourceLocation func_110775_a(Entity par1Entity)
  24. {
  25. return this.func_110870_a((EntityRodeur)par1Entity);
  26. }
  27.  
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement