1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
package gregtech.api.interfaces.tileentity; /** * IC2 Energy Compat */ public interface IIC2Enet { /** * Should this tile/block join the ic2 enet */ boolean shouldJoinIc2Enet(); /** * Update the ic2 enet */ void doEnetUpdate(); }