BiomesOPlenty/src/minecraft/biomesoplenty/helpers/CreativeTabsBOP.java

20 lines
426 B
Java
Raw Normal View History

2013-05-03 13:00:44 +00:00
package biomesoplenty.helpers;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.item.ItemStack;
import biomesoplenty.api.Blocks;
2013-05-03 13:00:44 +00:00
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);
}
}