41 lines
785 B
Java
41 lines
785 B
Java
package appeng.integration.modules;
|
|
|
|
import net.minecraft.tileentity.TileEntity;
|
|
import powercrystals.minefactoryreloaded.api.IDeepStorageUnit;
|
|
import appeng.api.storage.IMEInventory;
|
|
import appeng.integration.IIntegrationModule;
|
|
import appeng.integration.abstraction.IMFR;
|
|
import appeng.integration.modules.helpers.MFRDSU;
|
|
|
|
public class MFR implements IIntegrationModule, IMFR
|
|
{
|
|
|
|
public static MFR instance;
|
|
|
|
@Override
|
|
public IMEInventory getDSU(TileEntity te)
|
|
{
|
|
return new MFRDSU( te );
|
|
}
|
|
|
|
@Override
|
|
public boolean isDSU(TileEntity te)
|
|
{
|
|
if ( te instanceof IDeepStorageUnit ) return true;
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public void Init()
|
|
{
|
|
// TODO Auto-generated method stub
|
|
|
|
}
|
|
|
|
@Override
|
|
public void PostInit()
|
|
{
|
|
|
|
}
|
|
|
|
}
|