blob: 98e384cd3ff88f870428a2f36df8a418882d3dfc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
package gtPlusPlus.xmod.bop.blocks.pine;
import gtPlusPlus.xmod.bop.blocks.base.LogBase;
public class LogPineTree extends LogBase {
public LogPineTree() {
super("Pine Log", "pine", new String[] { "pine" });
this.treeType = new String[] { "pine" };
}
/*
* @Override
* @SideOnly(Side.CLIENT) protected IIcon getSideIcon(int metaID){ return this.textureSide[metaID %
* this.textureSide.length]; }
* @Override
* @SideOnly(Side.CLIENT) protected IIcon getTopIcon(int metaID){ return this.textureTop[metaID %
* this.textureTop.length]; }
*/
}
|