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 ModelPig extends ModelQuadruped 008{ 009 public ModelPig() 010 { 011 this(0.0F); 012 } 013 014 public ModelPig(float par1) 015 { 016 super(6, par1); 017 this.head.setTextureOffset(16, 16).addBox(-2.0F, 0.0F, -9.0F, 4, 3, 1, par1); 018 this.field_78145_g = 4.0F; 019 } 020}