Advertisement
kman2010

RenderDragon.java

Jun 4th, 2011
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.88 KB | None | 0 0
  1. package net.minecraft.src;
  2.  
  3.  
  4.  
  5. public class RenderDragon extends RenderLiving
  6. {
  7.  
  8.     public RenderDragon(ModelBase modelbase, float f)
  9.     {
  10.         super(modelbase, f); // try not to modify anything here, except the referenced class names, for example, "EntityEpic".
  11.     }
  12.  
  13.     public void func_177_a(EntityDragon entityDragon, double d, double d1, double d2,  
  14.             float f, float f1)
  15.     {
  16.         super.doRenderLiving(entityDragon, d, d1, d2, f, f1);
  17.     }
  18.  
  19.     public void doRenderLiving(EntityLiving entityliving, double d, double d1, double d2,  
  20.             float f, float f1)
  21.     {
  22.         func_177_a((EntityDragon)entityliving, d, d1, d2, f, f1);
  23.     }
  24.  
  25.     public void doRender(Entity entity, double d, double d1, double d2,  
  26.             float f, float f1)
  27.     {
  28.         func_177_a((EntityDragon)entity, d, d1, d2, f, f1);
  29.     }
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement