22 lines
473 B
Java
22 lines
473 B
Java
|
package biomesoplenty.helpers;
|
||
|
|
||
|
import biomesoplenty.api.Blocks;
|
||
|
import biomesoplenty.configuration.BOPBlocks;
|
||
|
|
||
|
import net.minecraft.creativetab.CreativeTabs;
|
||
|
import net.minecraft.item.ItemStack;
|
||
|
|
||
|
public class CreativeTabsBOP extends CreativeTabs
|
||
|
{
|
||
|
public CreativeTabsBOP(int position, String tabID)
|
||
|
{
|
||
|
super(position, tabID); //The constructor for your tab
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public ItemStack getIconItemStack()
|
||
|
{
|
||
|
return new ItemStack(Blocks.saplings.get(),1,6);
|
||
|
}
|
||
|
}
|