Guest User

Untitled

a guest
Jan 13th, 2018
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. package net.minecraft.src;
  2.  
  3. public class RenderDoomcube extends RenderLiving
  4. {
  5.  
  6. public RenderDoomcube(ModelBase modelbase, float f)
  7. {
  8. super(modelbase, f);
  9. }
  10.  
  11. public void renderDoomcube(EntityDoomcube entitydoomcube, double d, double d1, double d2, float f, float f1)
  12. {
  13. super.doRenderLiving(entitydoomcube, d, d1, d2, f, f1);
  14. }
  15.  
  16. public void doRenderLiving(EntityLiving entityliving, double d, double d1, double d2, float f, float f1)
  17. {
  18. renderDoomcube((EntityDoomcube)entityliving, d, d1, d2, f, f1);
  19. }
  20.  
  21. public void doRender(Entity entity, double d, double d1, double d2, float f, float f1)
  22. {
  23. renderDoomcube((EntityDoomcube)entity, d, d1, d2, f, f1);
  24. }
  25. }
Add Comment
Please, Sign In to add comment