4883dfb78c
Also some old integration clean up.
13 lines
280 B
Java
13 lines
280 B
Java
package appeng.integration.abstraction;
|
|
|
|
import net.minecraftforge.common.util.ForgeDirection;
|
|
import appeng.util.InventoryAdaptor;
|
|
|
|
public interface IBetterStorage
|
|
{
|
|
|
|
boolean isStorageCrate(Object te);
|
|
|
|
InventoryAdaptor getAdaptor(Object te, ForgeDirection d);
|
|
|
|
}
|