equivalent-exchange-3/src/main/java/com/pahimar/ee3/creativetab/CreativeTabEE3.java

37 lines
714 B
Java
Raw Normal View History

2013-08-23 16:59:50 +02:00
package com.pahimar.ee3.creativetab;
import net.minecraft.creativetab.CreativeTabs;
import com.pahimar.ee3.lib.ItemIds;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
/**
* Equivalent-Exchange-3
*
* CreativeTabEE3
*
* @author pahimar
* @license Lesser GNU Public License v3 (http://www.gnu.org/licenses/lgpl.html)
*
*/
public class CreativeTabEE3 extends CreativeTabs {
2013-09-07 04:47:12 +02:00
public CreativeTabEE3(int tabID, String tabLabel) {
2013-08-23 16:59:50 +02:00
2013-09-07 04:47:12 +02:00
super(tabID, tabLabel);
}
2013-08-23 16:59:50 +02:00
2013-09-07 04:47:12 +02:00
@Override
@SideOnly(Side.CLIENT)
/**
* the itemID for the item to be displayed on the tab
*/
public int getTabIconItemIndex() {
2013-08-23 16:59:50 +02:00
2013-09-07 04:47:12 +02:00
return ItemIds.MINIUM_SHARD;
}
2013-08-23 16:59:50 +02:00
}