/**
* Copyright (c) Lambda Innovation Team, 2013
* 版权许可:LambdaCraft 制作小组, 2013.
* http://lambdacraft.cn/
*
* The mod is open-source. It is distributed under the terms of the
* Lambda Innovation Open Source License. It grants rights to read, modify, compile
* or run the code. It does *NOT* grant the right to redistribute this software
* or its modifications in any form, binary or source, except if expressively
* granted by the copyright holder.
*
* 本Mod是完全开源的,你允许参考、使用、引用其中的任何代码段,但不允许将其用于商业用途,在引用的时候,必须注明原作者。
*/
package cn.dawn47.core.misc;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.item.Item;
import cn.dawn47.core.register.DWItems;
/**
* @author WeAthFolD
*
*/
public class DWCreativeTab extends CreativeTabs {
/**
* @param label
*/
public DWCreativeTab(String label) {
super(label);
}
@Override
public Item getTabIconItem() {
return DWItems.logo;
}
}