001package net.minecraft.client.model;
002
003import cpw.mods.fml.relauncher.Side;
004import cpw.mods.fml.relauncher.SideOnly;
005
006@SideOnly(Side.CLIENT)
007public class ModelLargeChest extends ModelChest
008{
009    public ModelLargeChest()
010    {
011        this.chestLid = (new ModelRenderer(this, 0, 0)).setTextureSize(128, 64);
012        this.chestLid.addBox(0.0F, -5.0F, -14.0F, 30, 5, 14, 0.0F);
013        this.chestLid.rotationPointX = 1.0F;
014        this.chestLid.rotationPointY = 7.0F;
015        this.chestLid.rotationPointZ = 15.0F;
016        this.chestKnob = (new ModelRenderer(this, 0, 0)).setTextureSize(128, 64);
017        this.chestKnob.addBox(-1.0F, -2.0F, -15.0F, 2, 4, 1, 0.0F);
018        this.chestKnob.rotationPointX = 16.0F;
019        this.chestKnob.rotationPointY = 7.0F;
020        this.chestKnob.rotationPointZ = 15.0F;
021        this.chestBelow = (new ModelRenderer(this, 0, 19)).setTextureSize(128, 64);
022        this.chestBelow.addBox(0.0F, 0.0F, 0.0F, 30, 10, 14, 0.0F);
023        this.chestBelow.rotationPointX = 1.0F;
024        this.chestBelow.rotationPointY = 6.0F;
025        this.chestBelow.rotationPointZ = 1.0F;
026    }
027}