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