aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api/interfaces/tileentity/IIC2Enet.java
blob: 971558c09288643ef288ae31299f91639ca2a598 (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();
}