Applied-Energistics-2-tiler.../recipes/game/IRecipeBakeable.java

13 lines
248 B
Java
Raw Normal View History

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