aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api/interfaces/tileentity/IIC2Enet.java
blob: ee3516dfac4eeeadba8dd0228017b19831aeb74d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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();

}