Applied-Energistics-2-tiler.../recipes/ores/IOreListener.java
2013-12-27 16:59:59 -06:00

18 lines
334 B
Java

package appeng.recipes.ores;
import net.minecraft.item.ItemStack;
public interface IOreListener
{
/**
* Called with various items registered in the dictionary.
* AppEng.oreDictionary.observe(...) to register them.
*
* @param Name
* @param item
*/
void oreRegistered(String Name, ItemStack item);
}