equivalent-exchange-3/ee3_common/ee3/common/item/ItemInertStone.java

26 lines
507 B
Java
Raw Normal View History

2012-10-26 02:55:26 +02:00
package ee3.common.item;
import ee3.common.EquivalentExchange3;
import ee3.common.lib.Strings;
2012-10-27 23:41:02 +02:00
/**
* ItemInertStone
*
* An inert stone
*
* @author pahimar
* @license Lesser GNU Public License v3 (http://www.gnu.org/licenses/lgpl.html)
*
*/
2012-10-26 02:55:26 +02:00
public class ItemInertStone extends ItemEE {
2012-11-30 21:45:32 +01:00
public ItemInertStone(int id) {
super(id);
this.setIconCoord(1, 0);
this.setItemName(Strings.INERT_STONE_NAME);
this.setCreativeTab(EquivalentExchange3.tabsEE3);
}
2012-10-26 02:55:26 +02:00
}