2013-12-27 23:59:59 +01:00
|
|
|
package appeng.util.item;
|
|
|
|
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import appeng.api.storage.data.IAEItemStack;
|
|
|
|
|
|
|
|
public class OreHelper
|
|
|
|
{
|
|
|
|
|
2014-01-05 09:45:29 +01:00
|
|
|
public static OreHelper instance = new OreHelper();
|
2013-12-27 23:59:59 +01:00
|
|
|
|
|
|
|
public boolean isOre(IAEItemStack is)
|
|
|
|
{
|
|
|
|
// TODO Auto-generated method stub
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean sameOre(AEItemStack aeItemStack, IAEItemStack is)
|
|
|
|
{
|
|
|
|
// TODO Auto-generated method stub
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void sameOre(AEItemStack aeItemStack, ItemStack o)
|
|
|
|
{
|
|
|
|
// TODO Auto-generated method stub
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|