Files
Applied-Energistics-2/recipes/game/IRecipeBakeable.java
T

13 lines
248 B
Java

package appeng.recipes.game;
import appeng.api.exceptions.MissingIngredientError;
import appeng.api.exceptions.RegistrationError;
public interface IRecipeBakeable
{
void bake() throws RegistrationError, MissingIngredientError;
}