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

17 lines
370 B
Java
Raw Normal View History

package ee3.common.item;
2012-10-27 23:41:02 +02:00
/**
* ITransmutationStone
*
* Transmutation Stone interface, for use amongst all different kinds of transmutation stones
*
* @author pahimar
* @license Lesser GNU Public License v3 (http://www.gnu.org/licenses/lgpl.html)
*
*/
public interface ITransmutationStone {
public abstract void openPortableCrafting(String keyPressed);
}