Skip to content

Instantly share code, notes, and snippets.

@BlockAfterBlock
Created April 24, 2011 04:14
Show Gist options
  • Select an option

  • Save BlockAfterBlock/939295 to your computer and use it in GitHub Desktop.

Select an option

Save BlockAfterBlock/939295 to your computer and use it in GitHub Desktop.
package net.minecraft.src;
public class LMHRenderBison extends RenderLiving
{
public LMHRenderBison(ModelBase modelbase, float f)
{
super(modelbase, f);
}
public void func_177_a(LMHEntityBison lmhentitybison, double d, double d1, double d2,
float f, float f1)
{
super.doRenderLiving(lmhentitybison, d, d1, d2, f, f1);
}
public void doRenderLiving(EntityLiving entityliving, double d, double d1, double d2,
float f, float f1)
{
func_177_a((LMHEntityBison)entityliving, d, d1, d2, f, f1);
}
public void doRender(Entity entity, double d, double d1, double d2,
float f, float f1)
{
func_177_a((LMHEntityBison)entity, d, d1, d2, f, f1);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment