2013-12-27 23:59:59 +01:00
|
|
|
package appeng.integration.abstraction;
|
|
|
|
|
2014-02-09 02:34:52 +01:00
|
|
|
import net.minecraftforge.common.util.ForgeDirection;
|
2013-12-27 23:59:59 +01:00
|
|
|
import appeng.util.InventoryAdaptor;
|
|
|
|
|
2014-08-12 18:58:24 +02:00
|
|
|
public interface IBetterStorage
|
2013-12-27 23:59:59 +01:00
|
|
|
{
|
|
|
|
|
|
|
|
boolean isStorageCrate(Object te);
|
|
|
|
|
|
|
|
InventoryAdaptor getAdaptor(Object te, ForgeDirection d);
|
|
|
|
|
|
|
|
}
|