Added TechrebornMisc creative tab
Moved dusts and cells to misc tab
This commit is contained in:
parent
1209c78345
commit
a42c707470
9 changed files with 58 additions and 35 deletions
|
@ -0,0 +1,22 @@
|
|||
package techreborn.client;
|
||||
|
||||
import net.minecraft.creativetab.CreativeTabs;
|
||||
import net.minecraft.item.Item;
|
||||
import techreborn.init.ModItems;
|
||||
|
||||
public class TechRebornCreativeTabMisc extends CreativeTabs{
|
||||
|
||||
public static TechRebornCreativeTabMisc instance = new TechRebornCreativeTabMisc();
|
||||
|
||||
public TechRebornCreativeTabMisc()
|
||||
{
|
||||
super("techreborn");
|
||||
}
|
||||
|
||||
@Override
|
||||
public Item getTabIconItem()
|
||||
{
|
||||
return ModItems.cells;
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue