equivalent-exchange-3/ee3_common/com/pahimar/ee3/item/ItemInertStone.java

27 lines
523 B
Java
Raw Normal View History

package com.pahimar.ee3.item;
import com.pahimar.ee3.EquivalentExchange3;
import com.pahimar.ee3.lib.Strings;
2012-10-26 02:55:26 +02:00
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
}