2013-12-27 23:59:59 +01:00
|
|
|
package appeng.integration.abstraction;
|
|
|
|
|
2014-02-09 02:34:52 +01:00
|
|
|
import net.minecraft.entity.player.EntityPlayerMP;
|
2013-12-27 23:59:59 +01:00
|
|
|
import net.minecraft.tileentity.TileEntity;
|
|
|
|
import appeng.api.parts.IPartHost;
|
|
|
|
import appeng.parts.CableBusContainer;
|
2014-02-09 02:34:52 +01:00
|
|
|
import cpw.mods.fml.common.eventhandler.Event;
|
2013-12-27 23:59:59 +01:00
|
|
|
|
|
|
|
public interface IFMP
|
|
|
|
{
|
|
|
|
|
|
|
|
IPartHost getOrCreateHost(TileEntity tile);
|
|
|
|
|
|
|
|
CableBusContainer getCableContainer(TileEntity te);
|
|
|
|
|
|
|
|
void registerPassThru(Class<?> layerInterface);
|
|
|
|
|
2014-02-09 02:34:52 +01:00
|
|
|
Event newFMPPacketEvent(EntityPlayerMP sender);
|
|
|
|
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|