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 otherOptions = new LinkedList(); LinkedList aeotherOptions = new LinkedList(); HashSet ores = new HashSet(); public Collection getEquivilients() { return otherOptions; } public Collection getAEEquivilients() { return aeotherOptions; } public Collection getOres() { return ores; } }