2014-02-10 23:51:25 -06:00
|
|
|
package appeng.recipes;
|
|
|
|
|
|
|
|
import java.util.HashMap;
|
2014-03-05 13:34:56 -06:00
|
|
|
import java.util.HashSet;
|
2014-02-10 23:51:25 -06:00
|
|
|
import java.util.LinkedList;
|
|
|
|
import java.util.List;
|
2014-03-05 13:34:56 -06:00
|
|
|
import java.util.Set;
|
2014-02-10 23:51:25 -06:00
|
|
|
|
2014-02-19 17:33:36 -06:00
|
|
|
import appeng.api.recipes.ICraftHandler;
|
2014-02-10 23:51:25 -06:00
|
|
|
|
|
|
|
public class RecipeData
|
|
|
|
{
|
|
|
|
|
|
|
|
final public HashMap<String, String> aliases = new HashMap<String, String>();
|
2014-02-24 23:33:31 -06:00
|
|
|
final public HashMap<String, GroupIngredient> groups = new HashMap<String, GroupIngredient>();
|
|
|
|
|
2014-02-19 17:33:36 -06:00
|
|
|
final public List<ICraftHandler> Handlers = new LinkedList<ICraftHandler>();
|
2014-02-10 23:51:25 -06:00
|
|
|
|
|
|
|
public boolean crash = true;
|
2014-02-24 23:33:31 -06:00
|
|
|
public boolean exceptions = true;
|
2014-02-10 23:51:25 -06:00
|
|
|
public boolean erroronmissing = true;
|
2014-03-05 13:34:56 -06:00
|
|
|
|
|
|
|
public Set<String> knownItem = new HashSet();
|
2014-02-10 23:51:25 -06:00
|
|
|
|
|
|
|
}
|