Applied-Energistics-2-tiler.../recipes/RecipeData.java
AlgorithmX2 9575c8872c Implemented Recipe Groups.
Added ISubItemResolvers.
ItemSeeds now use Constants instead of raw integers.
2014-02-24 23:33:31 -06:00

21 lines
535 B
Java

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