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

19 lines
280 B
Java
Raw Normal View History

2012-10-26 02:55:26 +02:00
package ee3.common.item;
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 {
public ItemInertStone(int id) {
super(id);
}
}