Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package net.minecraft.src;
- public class RenderDoomcube extends RenderLiving
- {
- public RenderDoomcube(ModelBase modelbase, float f)
- {
- super(modelbase, f);
- }
- public void renderDoomcube(EntityDoomcube entitydoomcube, double d, double d1, double d2, float f, float f1)
- {
- super.doRenderLiving(entitydoomcube, d, d1, d2, f, f1);
- }
- public void doRenderLiving(EntityLiving entityliving, double d, double d1, double d2, float f, float f1)
- {
- renderDoomcube((EntityDoomcube)entityliving, d, d1, d2, f, f1);
- }
- public void doRender(Entity entity, double d, double d1, double d2, float f, float f1)
- {
- renderDoomcube((EntityDoomcube)entity, d, d1, d2, f, f1);
- }
- }
Add Comment
Please, Sign In to add comment