43 lines
922 B
Java
43 lines
922 B
Java
package appeng.integration.modules;
|
|
|
|
import net.minecraft.tileentity.TileEntity;
|
|
import powercrystals.minefactoryreloaded.api.IDeepStorageUnit;
|
|
import appeng.api.AEApi;
|
|
import appeng.api.storage.IMEInventory;
|
|
import appeng.integration.BaseModule;
|
|
import appeng.integration.abstraction.IDSU;
|
|
import appeng.integration.modules.helpers.MFRDSU;
|
|
import appeng.integration.modules.helpers.MFRDSUHandler;
|
|
|
|
public class DSU extends BaseModule implements IDSU
|
|
{
|
|
|
|
public static DSU 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()
|
|
{
|
|
TestClass( IDeepStorageUnit.class );
|
|
}
|
|
|
|
@Override
|
|
public void PostInit()
|
|
{
|
|
AEApi.instance().registries().externalStorage().addExternalStorageInterface( new MFRDSUHandler() );
|
|
}
|
|
|
|
}
|