Fuzzy now supports the ore dictionary again.

This commit is contained in:
AlgorithmX2
2014-02-12 23:24:07 -06:00
parent 0a3474291c
commit 7f773f0d2b
6 changed files with 217 additions and 16 deletions
+32
View File
@@ -0,0 +1,32 @@
package appeng.util.item;
import java.util.Collection;
import java.util.HashSet;
import java.util.LinkedList;
import net.minecraft.item.ItemStack;
import appeng.api.storage.data.IAEItemStack;
public class OreRefrence
{
LinkedList<ItemStack> otherOptions = new LinkedList();
LinkedList<IAEItemStack> aeotherOptions = new LinkedList();
HashSet<Integer> ores = new HashSet<Integer>();
public Collection<ItemStack> getEquivilients()
{
return otherOptions;
}
public Collection<IAEItemStack> getAEEquivilients()
{
return aeotherOptions;
}
public Collection<Integer> getOres()
{
return ores;
}
}