BiomesOPlenty/common/biomesoplenty/helpers/CreativeTabsBOP.java

20 lines
419 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;
2013-07-13 08:53:58 +00:00
import biomesoplenty.api.Items;
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
}
2013-05-31 10:34:02 +00:00
2013-05-03 13:00:44 +00:00
@Override
public ItemStack getIconItemStack()
{
2013-07-13 08:53:58 +00:00
return new ItemStack(Items.food.get(),1,7);
2013-05-03 13:00:44 +00:00
}
}