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;
|
|
|
|
|
|
|
|
public interface IBS
|
|
|
|
{
|
|
|
|
|
|
|
|
boolean isStorageCrate(Object te);
|
|
|
|
|
|
|
|
InventoryAdaptor getAdaptor(Object te, ForgeDirection d);
|
|
|
|
|
|
|
|
}
|