ActuallyAdditions/src/main/java/ellpeck/someprettytechystuff/creative/CreativeTab.java
2015-01-05 22:14:04 +01:00

20 lines
480 B
Java

package ellpeck.someprettytechystuff.creative;
import ellpeck.someprettytechystuff.items.InitItems;
import ellpeck.someprettytechystuff.util.Util;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.item.Item;
public class CreativeTab extends CreativeTabs{
public static CreativeTab instance = new CreativeTab();
public CreativeTab(){
super(Util.MOD_ID);
}
public Item getTabIconItem() {
return InitItems.itemInfoBook;
}
}