Applied-Energistics-2-tiler.../recipes/RecipeData.java
AlgorithmX2 08e6a656b8 Added Basic Quartz and Tool Recipes.
Added Custom Recipes.
2014-02-10 23:51:25 -06:00

19 lines
405 B
Java

package appeng.recipes;
import java.util.HashMap;
import java.util.LinkedList;
import java.util.List;
import appeng.recipes.handlers.CraftHandler;
public class RecipeData
{
final public HashMap<String, String> aliases = new HashMap<String, String>();
final public List<CraftHandler> Handlers = new LinkedList<CraftHandler>();
public boolean crash = true;
public boolean erroronmissing = true;
}