blob: e8de630960dfd1b78dd05886d7cb8ed29b254bf0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
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];
}*/
}
|