Applied-Energistics-2-tiler.../recipes/ores/IOreListener.java

18 lines
334 B
Java
Raw Normal View History

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);
}