aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gtPlusPlus/australia/entity/model/ModelBoar.java
blob: 7d858e39f0c2967a419d4c733e312b641be05124 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package gtPlusPlus.australia.entity.model;

import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.client.model.ModelQuadruped;

@SideOnly(Side.CLIENT)
public class ModelBoar extends ModelQuadruped {
	
	public ModelBoar() {
		this(0.0F);
	}

	public ModelBoar(float p_i1151_1_) {
		super(6, p_i1151_1_);
		this.head.setTextureOffset(16, 16).addBox(-2.0F, 0.0F, -9.0F, 4, 3, 1, p_i1151_1_);
		this.field_78145_g = 4.0F;
	}
	
}