blob: 25b3aa23ef852e6595419d16364a75bbdfbf22d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
package jp.plusplus.fbs.tab;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import jp.plusplus.fbs.FBS;
import jp.plusplus.fbs.item.ItemCore;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.item.Item;
/**
* Created by plusplus_F on 2015/11/08.
*/
public class TabSpirit extends CreativeTabs{
public TabSpirit(String label) {
super(label);
}
@Override
@SideOnly(Side.CLIENT)
public Item getTabIconItem() {
return ItemCore.stoneActiveMale;
}
@Override
@SideOnly(Side.CLIENT)
public String getTranslatedTabLabel() {
return FBS.NAME+":Contract with Spirit";
}
}
|